import 'package:bloc/bloc.dart'; import 'package:meta/meta.dart'; part 'profile_state.dart'; class ProfileCubit extends Cubit { ProfileCubit() : super(ProfileInitial()); }