FilterCondition.isNotNull constructor

const FilterCondition.isNotNull({
  1. required String property,
})

Filters the results to only include objects where the property is not null.

Implementation

const FilterCondition.isNotNull({
  required this.property,
})  : type = FilterConditionType.isNotNull,
      value1 = null,
      include1 = false,
      value2 = null,
      include2 = false,
      caseSensitive = false,
      epsilon = Query.epsilon,
      super._();