getOrderByRetailer method

Future<List<OrderList>?> getOrderByRetailer(
  1. String retailerId
)

Implementation

Future<List<OrderList>?> getOrderByRetailer(String retailerId) async {
  return await this
      ._orderService
      .getOrdersByQuery({"retailerId": retailerId});
}