whereNotLike method
Implementation
T whereNotLike(String field, String value,
{bool caseSensitive = false, bool escape = true}) {
qb.whereNotLike(field, value, caseSensitive: caseSensitive, escape: escape);
return this as T;
}
T whereNotLike(String field, String value,
{bool caseSensitive = false, bool escape = true}) {
qb.whereNotLike(field, value, caseSensitive: caseSensitive, escape: escape);
return this as T;
}