getOrderById method

Future<OrderList?> getOrderById(
  1. String id
)

Implementation

Future<OrderList?> getOrderById(String id) async {
  return await this._orderService.getOrderById(id);
}