enabled property

bool enabled

Returns if the Banner is currently enabled

Implementation

bool get enabled => _enabled;
void enabled=(bool enabled)

Updates the enabled status. Will call notifyListeners

Implementation

set enabled(bool enabled) {
  _enabled = enabled;
  notifyListeners();
}