mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-12-11 09:04:30 -05:00
13 lines
368 B
Dart
13 lines
368 B
Dart
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:veilid_support/veilid_support.dart';
|
|
|
|
import '../../tools/tools.dart';
|
|
|
|
class ActiveChatCubit extends Cubit<TypedKey?> with BlocTools {
|
|
ActiveChatCubit(super.initialState);
|
|
|
|
void setActiveChat(TypedKey? activeChatRemoteConversationRecordKey) {
|
|
emit(activeChatRemoteConversationRecordKey);
|
|
}
|
|
}
|