step property

num? step

Define the step the ctrl-up & ctrl-down must take.

@default 1

Implementation

_i2.num? get step => _i4.getProperty(
      this,
      'step',
    );
void step=(num? value)

Implementation

set step(_i2.num? value) {
  _i4.setProperty(
    this,
    'step',
    value ?? _i6.undefined,
  );
}