createCustomer method
Create a new customer account.
Implementation
Future<Map<String, dynamic>?> createCustomer({
required String email,
required String password,
required String firstName,
required String lastName,
}) {
throw UnimplementedError('createCustomer() has not been implemented.');
}