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
@@ -59,7 +59,7 @@ class MessageSearchBlocState extends State<MessageSearchBloc>
/// [messagesStream] and [queryMessagesLoading] stream
Future<void> search({
required Filter filter,
Map<String, dynamic>? messageFilter,
Filter? messageFilter,
List<SortOption>? sort,
String? query,
PaginationParams? pagination,
@@ -85,7 +85,7 @@ class MessageSearchListCore 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;
/// The builder that is used when the search messages are fetched
final Widget Function(List<GetMessageResponse>) childBuilder;