postSellOrder method

Future<SellItem?> postSellOrder(
  1. Map<String, dynamic> body
)

Implementation

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