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