notLike method
A shortcut for where
with Operator.notLike (case insensitive) or Operator.notLikeCs (case sensitive).
Implementation
RT notLike(FieldName fieldName, String value, {bool caseSensitive = true}) =>
where(fieldName, caseSensitive ? Operator.notLikeCs : Operator.notLike,
value);