showDownloadProgressNotification method
Mostra notificação de progresso de download
Implementation
Future<void> showDownloadProgressNotification({
required String fileName,
required int progress,
required int total,
int? notificationId,
}) async {
await showProgressNotification(
title: 'Download',
message: 'Baixando $fileName...',
progress: progress,
maxProgress: total,
notificationId: notificationId,
);
}