createCustomer abstract method

Future<String?> createCustomer(
  1. Customer customer
)

Store a customer's details in a customer object to reuse in future payments. Link a payment instrument using the Update customer details endpoint, so the customer id returned can be passed as a source when making a payment.

Implementation

Future<String?> createCustomer(Customer customer);