busy property

bool busy

Busy state indicator

Implementation

bool get busy => _busy;
void busy=(bool busy)

Implementation

set busy(bool busy) {
  if (_busy == busy) return;
  _busy = busy;
  notifyListeners();
}