FastStorePlanBuilder constructor
const
FastStorePlanBuilder({
- Key? key,
- required BlocBuilder<
FastStoreBlocState> builder, - bool onlyWhenProductsChanges = false,
- FastStorePlanBuilderCondition? buildWhen,
Creates a new FastStorePlanBuilder.
The builder
is a required argument and must not be null.
Optionally, the buildWhen
and onlyWhenProductsChanges
can be provided.
Implementation
const FastStorePlanBuilder({
super.key,
required this.builder,
this.onlyWhenProductsChanges = false,
this.buildWhen,
});