busy property
bool
get
busy
If the UI should show a progress indicator. Defaults to false.
Change this to true, e.g., while loading more data or validating user input.
Implementation
_i2.bool get busy => _i5.getProperty(
this,
'busy',
);
set
busy
(bool value)
Implementation
set busy(_i2.bool value) {
_i5.setProperty(
this,
'busy',
value,
);
}