isRecordingActionInProgress property

bool get isRecordingActionInProgress

Implementation

bool get isRecordingActionInProgress => _isRecordingActionInProgress;
set isRecordingActionInProgress (bool value)

Implementation

set isRecordingActionInProgress(bool value) {
  if (_isRecordingActionInProgress == value) return; // avoid redundant rebuilds
  _isRecordingActionInProgress = value;

  if (!value) cancelResetRecordingAction();

  notifyListeners();
}