handleSyncSignal method
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();
}
Handle silent push sync signal — re-fetch first page + unread count.
Future<void> handleSyncSignal() async {
if (!_initialized) return;
debugPrint('InboxService: handling sync signal');
await refresh();
}