getPaymentMethods method

Future<List<PaymentMethod>> getPaymentMethods({
  1. required String customerId,
})

Get the payment methods for a customer.

Implementation

Future<List<PaymentMethod>> getPaymentMethods({required String customerId}) {
  throw UnimplementedError('getPaymentMethods() has not been implemented.');
}