part of 'education_bloc.dart'; abstract class EducationState extends Equatable { const EducationState(); @override List get props => []; } class EducationInitial extends EducationState {} class EducationalBackgroundLoadedState extends EducationState{ final List educationalBackground; const EducationalBackgroundLoadedState({required this.educationalBackground}); @override List get props => [educationalBackground]; } class EducationalBackgroundErrorState extends EducationState{ final String message; const EducationalBackgroundErrorState({required this.message}); @override List get props => [message]; } class EducationalBackgroundLoadingState extends EducationState{ }