importState method
state object should be a Map<String, dynamic> state
Example
var state={'counter':CounterModel(count:5, isLoading:false)};
store.importState(state);
Implementation
void importState(Map<String, dynamic> state) {
_store.add(state);
dispatch(Action(type: '@importState'));
}