veilidchat/lib/chat/cubits/active_chat_cubit.dart
Christien Rioux 9c5feed732 messages wip
2024-06-06 07:49:42 -04:00

11 lines
317 B
Dart

import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:veilid_support/veilid_support.dart';
class ActiveChatCubit extends Cubit<TypedKey?> {
ActiveChatCubit(super.initialState);
void setActiveChat(TypedKey? activeChatLocalConversationRecordKey) {
emit(activeChatLocalConversationRecordKey);
}
}