isTutorialEnabled property

bool isTutorialEnabled

Implementation

bool get isTutorialEnabled => _isTutorialEnabled;
void isTutorialEnabled=(bool value)

Implementation

set isTutorialEnabled(bool value) {
  if (_isTutorialEnabled != value) {
    _isTutorialEnabled = value;
    notifyListeners();
  }
}