confirmWithLastUsedPaymentMethod method

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

Confirm with Customer Last Used Payment Methods.

Throws an UnimplementedError if the method is not implemented.

Implementation

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