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