'Flutter - cubit: ProviderNotFoundException

Im am trying to get userData by id to show userProfile. I create a cubitProfile for this reason but when I go to the profile page the app ProviderNotFoundException(T, context.widget.runtimeType) apears. Can u help me with this error?

Here is my code:

profile

class ProfileScreen extends StatelessWidget {
  final String id;

  const ProfileScreen({Key? key, required this.id}) : super(key: key);
  @override
  Widget build(BuildContext context) {
    return BlocBuilder<ProfileCubit, ProfileStates>(builder: (context, state) {
      var cubit = ProfileCubit.get(context);

      return Scaffold(
       ...

profileCubit

class ProfileCubit extends Cubit<ProfileStates> {
  ProfileCubit() : super(ProfileInitState());

  static ProfileCubit get(context) => BlocProvider.of(context);

  late UserData userData;

  void getUserDataById(String id) {
    emit(ProfileGetUserLoadingState());
    FirebaseFirestore.instance.collection('users').doc(id).get().then((value) {
      userData = UserData.fromJson(jsonDecode(jsonEncode(value.data())));
      emit(ProfileGetUserSuccessState());
    }).catchError((error) {
      print(error);
      emit(ProfileGetUserErrorState());
    });
  }

  bool isSameUser(String uid) {
    if (FirebaseAuth.instance.currentUser!.uid != uid) {
      return false;
    } else {
      return true;
    }
  }
}


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source