currentUserEmail function
Returns the email of the current user. If the current user is null, returns "null".
Implementation
String currentUserEmail() => FirebaseAuth.instance.currentUser?.email ?? "null";
Returns the email of the current user. If the current user is null, returns "null".
String currentUserEmail() => FirebaseAuth.instance.currentUser?.email ?? "null";