VerifyPurchaseWithProviderResult constructor

const VerifyPurchaseWithProviderResult({
  1. List<VerifyPurchaseWithProviderError>? errors,
  2. RequestVerifyPurchaseWithIapkitResult? iapkit,
  3. required PurchaseVerificationProvider provider,
})

Implementation

const VerifyPurchaseWithProviderResult({
  /// Error details if verification failed
  this.errors,
  /// IAPKit verification result
  this.iapkit,
  required this.provider,
});