state property
Implementation
T get state => _state;
Implementation
@protected
set state(T nw) {
if (state == nw || !mounted) return;
_state = nw;
_streamController.add(nw);
}
T get state => _state;
@protected
set state(T nw) {
if (state == nw || !mounted) return;
_state = nw;
_streamController.add(nw);
}