getCustomerOrders method

Future<List<Map<String, dynamic>>?> getCustomerOrders()

Get customer orders.

Retrieves the order history for the currently authenticated customer. Requires customer authentication.

Returns a list of maps containing order data, or null if not authenticated or failed.

Implementation

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