veilidchat/lib/chat/cubits/active_chat_cubit.dart

12 lines
379 B
Dart
Raw Normal View History

2024-02-26 23:34:17 -05:00
import 'package:bloc_tools/bloc_tools.dart';
2024-01-30 17:03:14 -05:00
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:veilid_support/veilid_support.dart';
2024-02-20 17:57:05 -05:00
class ActiveChatCubit extends Cubit<TypedKey?> with BlocTools {
ActiveChatCubit(super.initialState);
2024-01-30 17:03:14 -05:00
2024-02-08 21:05:59 -05:00
void setActiveChat(TypedKey? activeChatRemoteConversationRecordKey) {
emit(activeChatRemoteConversationRecordKey);
2024-01-30 17:03:14 -05:00
}
}