postBuyOrder method

Future<BuyItem?> postBuyOrder(
  1. Map<String, dynamic> body
)

Implementation

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