step property

String get step

Defines an increment or jump between values that you want to allow the user to enter. When used with the max and min attributes, lets you control the range and increment (for example, allow only even numbers) that the user can enter into an input field.

Implementation

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

Implementation

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