FastPlanBlocState constructor

FastPlanBlocState({
  1. dynamic error,
  2. bool isPlanPurchasePending = false,
  3. bool hasPurchasedPlan = false,
  4. bool isRestoringPlan = false,
  5. String? planId,
})

Implementation

FastPlanBlocState({
  super.error,
  this.isPlanPurchasePending = false,
  this.hasPurchasedPlan = false,
  this.isRestoringPlan = false,
  this.planId,
}) : super(isInitialized: true);