This commit is contained in:
Deven Joshi
2021-07-16 20:00:22 +05:30
parent cc76c3b8ff
commit 9c4216d976
@@ -283,7 +283,7 @@ Use these explicit parameters in the query parameters instead of the option keys
As an example, in the old app this filter:
```
```dart
filter: {
'members': {
'\$in': [StreamChat.of(context).user.id],
@@ -293,6 +293,6 @@ As an example, in the old app this filter:
Would turn into:
```
```dart
filter: Filter.in_('members', [StreamChat.of(context).user.id])
```