Null check operator used on a null value in flutter project
In the drawer, I’m showing the user’s email address. but null error is showing ! i am also adding ? this sign same error but null final email = FirebaseAuth.instance.currentUser!.email; Center( child: Text( ‘$email’, style: const TextStyle(fontWeight: FontWeight.bold, fontSize: 18.0, color: Colors.indigo), ), ), >Solution : It is possible your currentUser is null. Instead of… Read More Null check operator used on a null value in flutter project