timer property

  1. @protected
Timer? get timer

Implementation

@protected
Timer? get timer => _timer;
  1. @protected
set timer (Timer? value)

Implementation

@protected
set timer(Timer? value) {
  _timer?.cancel();
  _timer = value;
}