whereNotEqualTo method

FSPaginator<T> whereNotEqualTo(
  1. String field,
  2. dynamic value
)

Filters results by inequality.

Implementation

FSPaginator<T> whereNotEqualTo(String field, dynamic value) {
  query = query.where(field, isNotEqualTo: value);
  return this;
}