WithStore<S, A> constructor
const
WithStore<S, A> ({
- Key? key,
- required Store<
S, A> store, - required Widget builder(
- S state,
- void send(
- A
- BuildContext context
- bool isEqual(
- S previous,
- S current
Creates a WithStore that rebuilds on state changes.
Implementation
const WithStore({
super.key,
required this.store,
required this.builder,
this.isEqual = IsEqualUtils.stateAreEquals,
});