From 4199bc7b6db9345e2512b6689ac150414add1752 Mon Sep 17 00:00:00 2001 From: Deven Joshi Date: Thu, 30 Sep 2021 16:38:56 +0530 Subject: [PATCH] removed filteroperator --- packages/stream_chat/lib/src/core/models/filter.dart | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/stream_chat/lib/src/core/models/filter.dart b/packages/stream_chat/lib/src/core/models/filter.dart index e668c417..108efcb2 100644 --- a/packages/stream_chat/lib/src/core/models/filter.dart +++ b/packages/stream_chat/lib/src/core/models/filter.dart @@ -43,9 +43,6 @@ enum FilterOperator { /// Matches values that exist/don't exist based on the specified boolean value. exists, - /// Matches values that don't exist. - notExists, - /// Matches all the values specified in an array. and,