AbstractReducerBuilder<AState, AStateBuilder> class

AbstractReducerBuilder returns a reducer builder that rebuilds an abstract, or mixed in, piece of state. For most cases AbstractReducerBuilder is not recommended. When defining your state model favor composition over inheritance. However, this may be useful when trying to share functionaity between two separate redux stores.

Constructors

AbstractReducerBuilder()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

add<Payload>(ActionName<Payload> actionName, CReducer<AState, AStateBuilder, Payload> reducer) → void
Registers reducer function to the given actionName
build() Map<String, CReducer<AState, AStateBuilder, dynamic>>
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