getCurrentCustomer method

Future<Map<String, dynamic>?> getCurrentCustomer()

Get current customer information.

Retrieves the profile information of the currently authenticated customer. Requires the customer to be logged in.

Returns a map containing the customer's profile data, or null if not authenticated.

Implementation

Future<Map<String, dynamic>?> getCurrentCustomer() {
  throw UnimplementedError('getCurrentCustomer() has not been implemented.');
}