getCustomer method

Future<Customer> getCustomer({
  1. required String customerId,
})

Get the customer data.

Implementation

Future<Customer> getCustomer({required String customerId}) {
  throw UnimplementedError('getCustomer() has not been implemented.');
}