getCurrentActiveOrdersOfConsumer method
Implementation
Future<List<OrderList>?> getCurrentActiveOrdersOfConsumer(
String consumerId) async {
return await this._orderService.getOrdersByQuery(
{"consumerId": consumerId, "isActive": true.toString()});
}