isTimesUp property

bool isTimesUp

Returns the time out status of timer

Implementation

bool get isTimesUp => _isTimesUp;
void isTimesUp=(bool v)

Sets the status of timer

Implementation

set isTimesUp(bool v) {
  _isTimesUp = v;
  notifyListeners();
}