OnBatchUploadProgress typedef

OnBatchUploadProgress = void Function(String attachmentId, double progress)

Callback for tracking batch upload progress.

Receives the attachmentId and upload progress as a value between 0.0 and 1.0 for individual attachments during batch upload.

Implementation

typedef OnBatchUploadProgress = void Function(
  String attachmentId,
  double progress,
);