algolia / algoliasearch-helper-flutter

⚡️ Building block to create instant-search applications with Flutter
https://www.algolia.com/doc/guides/building-search-ui/what-is-instantsearch/flutter/
Other
21 stars 14 forks source link

Can the 'final String? status' field be filtered to exclude null values? #137

Open Patrick386 opened 1 month ago

Patrick386 commented 1 month ago

Can the 'final String? status' field be filtered to exclude null values? The 'status' field can have the values 'null', 'inProgress', 'pending', and 'approved'.

Ex>

  var filter = FilterState();
  filter.add(_statusFilterGroup, [Filter.facet('status', !=null )]); //  <<<