state property
BootstrapState
get
state
Implementation
BootstrapState get state => _state;
set
state
(BootstrapState newState)
Implementation
set state(BootstrapState newState) {
Logs().v('BootstrapState: $newState');
if (state != BootstrapState.error) {
_state = newState;
}
onUpdate?.call(this);
}