state property

  1. @override
Map<String, dynamic> get state
override

The current "state" of this StateNotifier.

Updating this variable will synchronously call all the listeners. Notifying the listeners is O(N) with N the number of listeners.

Updating the state will throw if at least one listener throws.

Implementation

@override
Map<String, dynamic> get state => super.state;
  1. @override
set state (Map<String, dynamic> state)
override

Implementation

@override
set state(Map<String, dynamic> state) => super.state = state;