getCustomerLastUsedPaymentMethodData method

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

Get Customer Last Used Payment Methods.

Throws an UnimplementedError if the method is not implemented.

Implementation

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