authenticateCustomer method
Authenticate customer with email and password.
Implementation
Future<bool> authenticateCustomer({
required String email,
required String password,
}) {
throw UnimplementedError('authenticateCustomer() has not been implemented.');
}