RequestVerifyPurchaseWithIapkitResult constructor

const RequestVerifyPurchaseWithIapkitResult({
  1. required bool isValid,
  2. required IapkitPurchaseState state,
  3. required IapStore store,
})

Implementation

const RequestVerifyPurchaseWithIapkitResult({
  /// Whether the purchase is valid (not falsified).
  required this.isValid,
  /// The current state of the purchase.
  required this.state,
  required this.store,
});