getCart method

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

Get cart information.

Retrieves the current shopping cart contents and details. Works for both guest and authenticated customers.

Returns a map containing the cart data, or null if failed.

Implementation

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