getSellOrderById method

Future<SellItem?> getSellOrderById(
  1. String orderId
)

Implementation

Future<SellItem?> getSellOrderById(String orderId) async {
  return await this._orderService.getSellOrderById(orderId);
}