setPaused method

void setPaused(
  1. bool value
)

Internal method to set pause status. Called by LivenessCheckScreen only.

Implementation

// ignore: use_setters_to_change_properties
void setPaused(bool value) {
  if (_isPaused != value) {
    _isPaused = value;
    notifyListeners();
  }
}