getOrder method

Future<Map<String, dynamic>?> getOrder(
  1. String orderId
)

Get order by ID.

Retrieves detailed information about a specific order.

orderId the unique identifier of the order

Returns a map containing the order details, or null if not found.

Implementation

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