Future<bool> isEmailVerified() async { if (kIsDev) return true; final user = _auth.currentUser; return user?.emailVerified ?? false; }