exportState method

Observable<List> exportState ()

return latest stream of action, state array.

Example

store.exportState().listen((arr) {
   print((arr[0] as Action).type);
   print(arr[1]);
 });

Implementation

Observable<List<dynamic>> exportState() {
  return _storeHelper.exportState();
}