isScreenShareActionInProgress property

bool get isScreenShareActionInProgress

Implementation

bool get isScreenShareActionInProgress => _isScreenShareActionInProgress;
set isScreenShareActionInProgress (bool value)

Implementation

set isScreenShareActionInProgress(bool value) {
  if (_isScreenShareActionInProgress == value) return;
  _isScreenShareActionInProgress = value;
  notifyListeners();
}