getOrder method

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

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

@override
Future<Map<String, dynamic>?> getOrder(String orderId) async {
  return null;
}