mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-10-01 06:55:46 -04:00
12 lines
379 B
Dart
12 lines
379 B
Dart
import 'package:bloc_tools/bloc_tools.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:veilid_support/veilid_support.dart';
|
|
|
|
class ActiveChatCubit extends Cubit<TypedKey?> with BlocTools {
|
|
ActiveChatCubit(super.initialState);
|
|
|
|
void setActiveChat(TypedKey? activeChatRemoteConversationRecordKey) {
|
|
emit(activeChatRemoteConversationRecordKey);
|
|
}
|
|
}
|