requestApplePayPayment method

Future<String?> requestApplePayPayment({
  1. required String authorization,
  2. required String merchantIdentifier,
  3. required String countryCode,
  4. required String currencyCode,
  5. required String amount,
})

Implementation

Future<String?> requestApplePayPayment({
  required String authorization,
  required String merchantIdentifier,
  required String countryCode,
  required String currencyCode,
  required String amount,
}) {
  throw UnimplementedError(
    'requestApplePayPayment() has not been implemented.',
  );
}