busy property
Implementation
bool get busy => _busy?.get() ?? false;
Implementation
@override
set busy(dynamic v) {
dynamic old = busy;
super.busy = v;
if (busy != old)
listeners.forEach((listener) {
listener.onDataSourceBusy(this, busy);
});
// Set Status
status = (busy == true) ? "busy" : (status ?? "idle");
}