cancelTestNotification static method
Cancels the test notification.
Implementation
static Future<void> cancelTestNotification(
FlutterLocalNotificationsPlugin plugin,
) async {
try {
await plugin.cancel(999999);
safeDebugLog('🗑️ Test notification cancelled');
} catch (e) {
safeDebugLog('❌ Failed to cancel test notification: $e');
}
}