notEqual method

TQuery notEqual(
  1. ModelTimestamp? value
)
inherited

You can filter only those elements whose value for key does not match the value for value.

keyに対する値とvalueが一致しない要素のみをフィルタリングすることができます。

Implementation

TQuery notEqual(T? value) {
  if (value == null) {
    return _toQuery(_modelQuery);
  }
  return _toQuery(_modelQuery.notEqual(key, value));
}