exportState function
return latest stream of action, state
array.
Example
exportState().listen((arr) {
print((arr[0] as Action).type);
print(arr[1]);
});
Implementation
Stream<List<dynamic>> exportState() {
return _store.exportState();
}