max property

String get max

Defines the maximum acceptable value for an input element with type="number".When used with the min and step attributes, lets you control the range and increment (such as only even numbers) that the user can enter into an input field.

Implementation

_i2.String get max => _i4.getProperty(
      this,
      'max',
    );
set max (String value)

Implementation

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