step property

int step

Implementation

int get step => _step;
  1. @Input()
void step=(int value)

Implementation

@Input()
set step(int value) {
  if (_step != value) {
    _disableSlideAnimation();
    _step = value;
  }
}