checkpoint

This commit is contained in:
Christien Rioux 2024-02-08 21:05:59 -05:00
parent 09ae8ff6bb
commit aa376a449d
3 changed files with 95 additions and 67 deletions

View file

@ -4,7 +4,7 @@ import 'package:veilid_support/veilid_support.dart';
class ActiveChatCubit extends Cubit<TypedKey?> {
ActiveChatCubit(super.initialState);
void setActiveChat(TypedKey? activeChat) {
emit(activeChat);
void setActiveChat(TypedKey? activeChatRemoteConversationRecordKey) {
emit(activeChatRemoteConversationRecordKey);
}
}