PaywallFooterView constructor

const PaywallFooterView({
  1. Key? key,
  2. Offering? offering,
  3. dynamic onPurchaseStarted(
    1. Package rcPackage
    )?,
  4. dynamic onPurchaseCompleted(
    1. CustomerInfo customerInfo,
    2. StoreTransaction storeTransaction
    )?,
  5. dynamic onPurchaseError(
    1. PurchasesError
    )?,
  6. dynamic onRestoreCompleted(
    1. CustomerInfo customerInfo
    )?,
  7. dynamic onRestoreError(
    1. PurchasesError
    )?,
  8. dynamic onDismiss()?,
  9. required Widget contentCreator(
    1. double bottomPadding
    ),
})

Implementation

const PaywallFooterView({
  Key? key,
  this.offering,
  this.onPurchaseStarted,
  this.onPurchaseCompleted,
  this.onPurchaseError,
  this.onRestoreCompleted,
  this.onRestoreError,
  this.onDismiss,
  required this.contentCreator,
}) : super(key: key);