state property

Implementation

BootstrapState get state => _state;
void state=(BootstrapState newState)

Implementation

set state(BootstrapState newState) {
  Logs().v('BootstrapState: $newState');
  if (state != BootstrapState.error) {
    _state = newState;
  }

  onUpdate?.call(this);
}