AddToWalletResult constructor

const AddToWalletResult({
  1. required bool canAddToWallet,
  2. AddToWalletDetails? details,
})

Implementation

const factory AddToWalletResult({
  /// Whether or not the card can be added to the wallet
  required bool canAddToWallet,

  /// additional details from the add to wallet request
  AddToWalletDetails? details,
}) = _AddToWalletResult;