confirmWithCustomerDefaultPaymentMethod method

Future<Map<String, dynamic>?> confirmWithCustomerDefaultPaymentMethod()

Presents the payment sheet.

Throws an UnimplementedError if the method is not implemented.

Implementation

Future<Map<String, dynamic>?> confirmWithCustomerDefaultPaymentMethod() {
  throw UnimplementedError(
    'confirmWithCustomerDefaultPaymentMethod() has not been implemented.',
  );
}