FastStorePlanBuilder constructor

const FastStorePlanBuilder({
  1. Key? key,
  2. required BlocBuilder<FastStoreBlocState> builder,
  3. bool onlyWhenProductsChanges = false,
  4. 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,
});