handleSyncSignal method

Future<void> handleSyncSignal()

Handle silent push sync signal — re-fetch first page + unread count.

Implementation

Future<void> handleSyncSignal() async {
  if (!_initialized) return;
  debugPrint('InboxService: handling sync signal');
  await refresh();
}