NiceFileUploadProgress constructor

const NiceFileUploadProgress({
  1. Key? key,
  2. required List<NiceUploadItem> items,
  3. ValueChanged<String>? onCancel,
  4. ValueChanged<String>? onRetry,
  5. VoidCallback? onCancelAll,
})

Implementation

const NiceFileUploadProgress({
  super.key,
  required this.items,
  this.onCancel,
  this.onRetry,
  this.onCancelAll,
});