RxReduxStore<A, S> class

Rx Redux Store. Redux store based on Stream.

Available Extensions

Constructors

RxReduxStore({required S initialState, required List<SideEffect<A, S>> sideEffects, required Reducer<A, S> reducer, ErrorHandler? errorHandler, Equals<S>? equals, RxReduxLogger? logger})
Construct a RxReduxStore
factory

Properties

actionStream Stream<A>
Get streams of actions.
no setter
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
stateStream → StateStream<S>
Get stream of states.
no setter

Methods

dispatch(A action) → void
Dispatch action to store.
dispatchMany(Stream<A> actionStream) → void
Dispatch Stream of actions to store.
dispose() Future<void>
Dispose all resources. This method is typically called in dispose method of Flutter State object.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited