clearSessionToken static method
Clear session token (useful for testing or full app shutdown)
Implementation
static Future<void> clearSessionToken() async {
if (!kDebugMode) return;
try {
await _channel.invokeMethod('clearSessionToken');
debugPrint('🗑️ Session token cleared');
} catch (e) {
debugPrint('⚠️ Failed to clear session token: $e');
}
}