cancelAllNotifications method

Future<void> cancelAllNotifications()

Cancela todas as notificações

Implementation

Future<void> cancelAllNotifications() async {
  if (!isEnabled) return;

  final count = _activeNotifications.length;
  _activeNotifications.clear();
  debugPrint('[Syncly] $count notificações canceladas');
}