defaultConfiguration property

ApplePayConfiguration defaultConfiguration
getter/setter pair

The default Apple Pay configuration for the MoneyHash SDK.

By default, this configuration collects the user's email address and sets the merchant display name to "Payment". You can customize this as needed by creating a new instance with your own parameters.

Implementation

static ApplePayConfiguration defaultConfiguration = ApplePayConfiguration(
  collectibleBillingData: [CollectibleBillingData.email],
  merchantDisplayName: 'Payment',
);