whereIsNull method

QueryBuilder whereIsNull(
  1. String field,
  2. bool isNull
)

Is null operator

Implementation

QueryBuilder whereIsNull(String field, bool isNull) {
  _filters['${field}__isnull'] = isNull.toString();
  return this;
}