isNull method

Only elements with a value of Null for key can be filtered.

keyに対する値がNullの要素のみをフィルタリングすることができます。

Implementation

CollectionModelQuery isNull(String key) {
  return _copyWithAddingFilter(filters: [
    ...filters,
    ModelQueryFilter._(
      type: ModelQueryFilterType.isNull,
      key: key,
    )
  ]);
}