I defined a showSnackBarr() function in any separate dart file and used in other dart file but showing red line under this stared ** context.
showSnackBar( **context** , e.toString);
showSnackBar(BuildContext context, String text) {
return ScaffoldMessenger.of(context).showSnackBar(SnackBar(
content: Text(text),
));
}
on FirebaseAuthException catch(e){
showSnackBar(context, e.message!);
res = false;
}