ExternalPurchaseLinkResultIOS constructor

const ExternalPurchaseLinkResultIOS({
  1. String? error,
  2. required bool success,
})

Implementation

const ExternalPurchaseLinkResultIOS({
  /// Optional error message if the presentation failed
  this.error,

  /// Whether the user completed the external purchase flow
  required this.success,
});