chat screen

This commit is contained in:
Felipe
2024-04-16 08:46:06 -05:00
parent 34c60af688
commit 61d517aaea
18 changed files with 931 additions and 22 deletions
+23
View File
@@ -0,0 +1,23 @@
part of 'chat_bloc.dart';
class ChatState extends Equatable {
const ChatState();
@override
List<Object> get props => [];
}
class ChatInitial extends ChatState {}
class ChatLoading extends ChatState {}
class ChatLoaded extends ChatState {
final ChatEntity chat;
const ChatLoaded({required this.chat});
@override
List<Object> get props => [chat];
}
class ChatFailure extends ChatState {}