whereNotEqualTo method

LCQuery<T> whereNotEqualTo(
  1. String key,
  2. dynamic value
)

Implementation

LCQuery<T> whereNotEqualTo(String key, dynamic value) {
  condition.whereNotEqualTo(key, value);
  return this;
}