busy property

bool busy

Helper boolean for busy state.

Can be used to display a progress indicator for example.

Implementation

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

Helper boolean for busy state.

Can be used to display a progress indicator for example.

Implementation

set busy(bool value) {
  _busy = value;
  notifyListeners();
}