signOut method
Enhanced sign out
Implementation
Future<bool> signOut() async {
try {
final GoogleSignIn? googleSignIn = _googleSignIn;
if (googleSignIn == null) return true;
await googleSignIn.signOut();
OnairosDebugHelper.log('✅ Successfully signed out from enhanced YouTube');
return true;
} catch (e) {
OnairosDebugHelper.log('❌ Error signing out from enhanced YouTube: $e');
return false;
}
}