veilidchat/lib/chat/cubits/active_chat_cubit.dart

11 lines
265 B
Dart
Raw Normal View History

2024-01-30 17:03:14 -05:00
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? activeChat) {
emit(activeChat);
}
}