whereNotLike method

T whereNotLike(
  1. String field,
  2. String value, {
  3. bool caseSensitive = false,
  4. bool escape = true,
})

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;
}