state property

T state

A state of this BeamLocation.

Upon beaming, it will be populated by all necessary attributes. See also: BeamState.

Implementation

T get state => _state;
void state=(T state)

Sets the state and adds to history.

Implementation

set state(T state) {
  _state = state;
  addToHistory(_state.routeInformation);
}