showSyncStartedNotification method

Future<void> showSyncStartedNotification()

Mostra notificação de início de sincronização

Implementation

Future<void> showSyncStartedNotification() async {
  await showNotification(
    title: 'Sincronização',
    message: 'Iniciando sincronização de dados...',
    channelId: 'sync_status',
  );
}