ilike method
dynamic
ilike({})
Implementation
ilike(
{required String attribute,
required dynamic value,
String? filterCondition,
String? key,
String? keyValue}) {
this.filters?.add(QueryFilter(
attribute: attribute,
condition: QueryCondition.Ilike,
value: value,
filterCondition: filterCondition,
key: key,
keyValue: keyValue));
return this;
}