FastIapPlanBuilder constructor

const FastIapPlanBuilder({
  1. Key? key,
  2. required BlocBuilder<FastPlanBlocState> builder,
  3. FastPlanBuilderCondition? buildWhen,
  4. bool onlyWhenIsRestoringPlanChanges = false,
  5. bool onlyWhenPurchaseChanges = false,
})

Creates a FastIapPlanBuilder widget.

builder must be provided.

Implementation

const FastIapPlanBuilder({
  super.key,
  required this.builder,
  this.buildWhen,
  this.onlyWhenIsRestoringPlanChanges = false,
  this.onlyWhenPurchaseChanges = false,
});