part of 'profile_bloc.dart'; abstract class ProfileState extends Equatable { const ProfileState(); @override List get props => []; } class ProfileInitial extends ProfileState {} class ProfileLoaded extends ProfileState { final ProfileInformation profileInformation; const ProfileLoaded({required this.profileInformation}); @override List get props => [profileInformation]; } class ProfileErrorState extends ProfileState { final String mesage; const ProfileErrorState({required this.mesage}); @override List get props => [mesage]; } class ProfileLoading extends ProfileState {} class EligibilityLoaded extends ProfileState { final List eligibilities; const EligibilityLoaded({required this.eligibilities}); @override List get props => [eligibilities]; } class EditNotOverseasEligibilityState extends ProfileState { final EligibityCert eligibityCert; final List eligibilities; final List regions; List provinces; List cityMuns; Eligibility? currentEligibility; Region? currentRegion; Province? currentProvince; bool? isOverseas; EditNotOverseasEligibilityState( {required this.currentEligibility, required this.currentRegion, required this.isOverseas, required this.cityMuns, required this.provinces, required this.eligibityCert, required this.eligibilities, required this.regions}); } class EditOverseasEligibilityState extends ProfileState { final List eligibilities; final EligibityCert eligibityCert; final Eligibility? currentEligibility; final List countries; final Country? currentCOuntry; bool? isOverseas; EditOverseasEligibilityState( {required this.currentEligibility, required this.eligibilities, required this.isOverseas, required this.eligibityCert, required this.countries, required this.currentCOuntry}); }