getBuyOrderById method

Future<BuyItem?> getBuyOrderById(
  1. String shoppingOrderId
)

Implementation

Future<BuyItem?> getBuyOrderById(String shoppingOrderId) async {
  return await this._orderService.getBuyOrderById(shoppingOrderId);
}