current property

Step get current

Implementation

Step get current => _current;
set current (Step step)

Implementation

set current(Step step) {
  if (step == _current) return;

  _current = step;
  notifyListeners();
}