fix rebase

This commit is contained in:
Salvatore Giordano
2021-04-30 15:20:03 +02:00
parent 1509739f24
commit 452d0c5717
6 changed files with 10 additions and 12 deletions
@@ -85,7 +85,7 @@ class ChannelListView extends StatefulWidget {
/// The query filters to use.
/// You can query on any of the custom fields you've defined on the [Channel].
/// You can also filter other built-in channel fields.
final Filter filter;
final Filter? filter;
/// Query channels options.
///
@@ -92,7 +92,7 @@ class MessageSearchListView extends StatefulWidget {
/// The message query filters to use.
/// You can query on any of the custom fields you've defined on the [Channel].
/// You can also filter other built-in channel fields.
final Map<String, dynamic>? messageFilters;
final Filter? messageFilters;
/// Builder used to create a custom item preview
final MessageSearchItemBuilder? itemBuilder;