min property

dynamic min

Minimum value. This needs to be in the same format as the inputFormat when used with the datetime alias.

Implementation

_i2.dynamic get min => _i4.getProperty(
      this,
      'min',
    );
void min=(dynamic value)

Implementation

set min(_i2.dynamic value) {
  _i4.setProperty(
    this,
    'min',
    value,
  );
}