connectionState property

ConnectionState get connectionState

Current state of connection to the asynchronous computation.

Implementation

ConnectionState get connectionState => _value.connectionState;
set connectionState (ConnectionState newValue)

Implementation

set connectionState(ConnectionState newValue) {
  _value = _value.inState(newValue);
}