AsyncReduxProvider<St> class

AsyncReduxProvider lets you use Provider with AsyncRedux, the non-boilerplate version of Redux.

AsyncReduxProvider exposes to its descendants: the Store, the store's AppState, and the Dispatch method.

For example:

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return AsyncReduxProvider<AppState>.value(
      value: store,
      child: MaterialApp(home: MyHomePage())
    );
  }}

You can then use:

Provider.of<Store<AppState>>(context) to get the store.
Provider.of<AppState>(context) to get the state.
Provider.of<Dispatch>(context) to get the dispatch method.

Example of using state and dispatch:

 String myName = Provider.of<AppState>(context).myName;
 Provider.of<Dispatch>(context)(IncrementAction());

Please note, you can also access the state and dispatch through the store:

 String myName = Provider.of<Store<AppState>>(context).state.myName;
 Provider.of<Store<AppState>>(context).dispatch(IncrementAction());
Inheritance

Constructors

AsyncReduxProvider({Key? key, required Create<Store<St>> builder, Dispose<Store<St>?>? dispose, required Widget child})
const
AsyncReduxProvider.value({Key? key, required Store<St> value, required Widget child})

Properties

builder → Create<Store<St>>
final
child Widget
final
dispose → Dispose<Store<St>?>?
final
hashCode int
The hash code for this object.
no setterinherited
key Key?
Controls how one widget replaces another widget in the tree.
finalinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

createElement() StatefulElement
Creates a StatefulElement to manage this widget's location in the tree.
inherited
createState() → _AsyncReduxProviderState<St>
Creates the mutable state for this widget at a given location in the tree.
override
debugDescribeChildren() List<DiagnosticsNode>
Returns a list of DiagnosticsNode objects describing this node's children.
inherited
debugFillProperties(DiagnosticPropertiesBuilder properties) → void
Add additional properties associated with the node.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toDiagnosticsNode({String? name, DiagnosticsTreeStyle? style}) DiagnosticsNode
Returns a debug representation of the object that is used by debugging tools and by DiagnosticsNode.toStringDeep.
inherited
toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) String
A string representation of this object.
inherited
toStringDeep({String prefixLineOne = '', String? prefixOtherLines, DiagnosticLevel minLevel = DiagnosticLevel.debug}) String
Returns a string representation of this node and its descendants.
inherited
toStringShallow({String joiner = ', ', DiagnosticLevel minLevel = DiagnosticLevel.debug}) String
Returns a one-line detailed description of the object.
inherited
toStringShort() String
A short, textual description of this widget.
inherited

Operators

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