updateBuyOrder method

Future<BuyItem?> updateBuyOrder(
  1. String shoppingOrderId,
  2. Map<String, dynamic> body
)

Implementation

Future<BuyItem?> updateBuyOrder(
    String shoppingOrderId, Map<String, dynamic> body) async {
  return await this._orderService.updateBuyOrder(shoppingOrderId, body);
}