state property

T state

A state of this delegate. This is the state that goes into locationBuilder to build an appropriate BeamLocation.

A way to modify this state is via update.

Implementation

T get state => _state.copyWith() as T;
void state=(T state)

Implementation

set state(T state) => _state = state..configure();