importState function
state object should be a Map<String, dynamic> state
Example
var state={'counter':CounterModel(count:5, isLoading:false)};
importState(state);
Implementation
importState(Map<String, dynamic> state) {
_store.importState(state);
}