isBusy property
bool
get
isBusy
Checks if your widget is currently busy.
This is triggered automatically by any call to handleAction
Implementation
bool get isBusy => _isBusy;
set
isBusy
(bool busy)
Force the state of the busy property Useful when wanting to manually control the busy state of a page
Implementation
set isBusy(bool busy) {
_isBusy = busy;
notifyListeners();
}