max property

dynamic max

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

Implementation

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

Implementation

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