like method
Checks whether the column value is LIKE the provided string value
Implementation
T like(String value) {
return _createFilter(value, "LIKE");
}
Checks whether the column value is LIKE the provided string value
T like(String value) {
return _createFilter(value, "LIKE");
}