isOpened property

bool get isOpened

Checks if the current slider for video camera is open

Implementation

bool get isOpened => _isOpened;
set isOpened (bool value)

Implementation

set isOpened(bool value) {
  _isOpened = value;
  notifyListeners();
}