UploadedFile constructor

const UploadedFile({
  1. String? fileUrl,
  2. String? thumbUrl,
})

Creates an UploadedFile with the specified URLs.

Implementation

const UploadedFile({
  this.fileUrl,
  this.thumbUrl,
});