remove final

This commit is contained in:
Salvatore Giordano
2021-05-06 13:43:02 +02:00
parent 63c447c7a5
commit 777eaa23fc
6 changed files with 7 additions and 7 deletions
@@ -119,8 +119,8 @@ class ChannelListCore extends StatefulWidget {
/// The current state of the [ChannelListCore].
class ChannelListCoreState extends State<ChannelListCore> {
late final ChannelsBlocState _channelsBloc;
late final StreamChatCoreState _streamChatCoreState;
late ChannelsBlocState _channelsBloc;
late StreamChatCoreState _streamChatCoreState;
@override
Widget build(BuildContext context) => _buildListView(_channelsBloc);
@@ -62,7 +62,7 @@ class ChannelsBloc extends StatefulWidget {
/// The current state of the [ChannelsBloc].
class ChannelsBlocState extends State<ChannelsBloc>
with AutomaticKeepAliveClientMixin {
late final StreamChatCoreState _streamChatCoreState;
late StreamChatCoreState _streamChatCoreState;
@override
Widget build(BuildContext context) {
@@ -109,7 +109,7 @@ class MessageListCore extends StatefulWidget {
/// The current state of the [MessageListCore].
class MessageListCoreState extends State<MessageListCore> {
late final StreamChannelState _streamChannel;
late StreamChannelState _streamChannel;
bool get _upToDate => _streamChannel.channel.state?.isUpToDate ?? true;
@@ -41,7 +41,7 @@ class MessageSearchBloc extends StatefulWidget {
/// The current state of the [MessageSearchBloc]
class MessageSearchBlocState extends State<MessageSearchBloc>
with AutomaticKeepAliveClientMixin {
late final StreamChatCoreState _streamChatCoreState;
late StreamChatCoreState _streamChatCoreState;
/// The current messages list
List<GetMessageResponse>? get messageResponses => _messageResponses.value;
@@ -105,7 +105,7 @@ class MessageSearchListCore extends StatefulWidget {
/// The current state of the [MessageSearchListCore].
class MessageSearchListCoreState extends State<MessageSearchListCore> {
late final MessageSearchBlocState _messageSearchBloc;
late MessageSearchBlocState _messageSearchBloc;
@override
void didChangeDependencies() {
@@ -55,7 +55,7 @@ class UsersBlocState extends State<UsersBloc>
/// The stream notifying the state of queryUsers call
Stream<bool> get queryUsersLoading => _queryUsersLoadingController.stream;
late final StreamChatCoreState _streamChatCore;
late StreamChatCoreState _streamChatCore;
/// The Query Users method allows you to search for users and see if they are
/// online/offline.