active property

String get active

Implementation

String get active => _active;
set active (String to)

Implementation

set active(String to) {
  if (to == _active) return;

  _active = to;
  notifyListeners();
}