orIsNull method

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

Add an OR condition with is null operator

Implementation

QueryBuilder orIsNull(String field, bool isNull) {
  _orConditions.add({'${field}__isnull': isNull.toString()});
  return this;
}