min property
String
get
min
Defines the minimum acceptable value for an input element with type="number". When used with the max and step attributes, lets you control the range and increment (such as even numbers only) that the user can enter into an input field.
Implementation
_i2.String get min => _i4.getProperty(
this,
'min',
);
set
min
(String value)
Implementation
set min(_i2.String value) {
_i4.setProperty(
this,
'min',
value,
);
}