part of 'profile_bloc.dart'; abstract class ProfileState extends Equatable { const ProfileState(); @override List get props => []; } class UpdateUserInfoInitial extends ProfileState {} class UpdateUserInfoFailure extends ProfileState {} class UpdateUserInfoLoading extends ProfileState {} class UpdateUserInfoSuccess extends ProfileState { const UpdateUserInfoSuccess(); @override List get props => []; }