Houshan-Basa/lib/ui/screens/library/cubit/chat_row_edit_state.dart

17 lines
399 B
Dart

part of 'chat_row_edit_cubit.dart';
sealed class ChatRowEditState extends Equatable {
const ChatRowEditState();
@override
List<Object> get props => [];
}
final class ChatRowEditInitial extends ChatRowEditState {}
final class ChatRowEditLoading extends ChatRowEditState {}
final class ChatRowEditSuccess extends ChatRowEditState {}
final class ChatRowEditFail extends ChatRowEditState {}