showBusy property
bool
get
showBusy
Implementation
bool get showBusy => _showBusy?.get() ?? true;
set
showBusy
(dynamic v)
Implementation
set showBusy(dynamic v) {
if (_showBusy != null) {
_showBusy!.set(v);
} else if (v != null) {
_showBusy = BooleanObservable(Binding.toKey(id, 'showbusy'), v,
scope: scope, listener: onPropertyChange);
}
}