FileUpload constructor

FileUpload({
  1. String? base64,
  2. DateTime? lastModified,
  3. DateTime? lastModifiedDate,
  4. String? name,
  5. int? size,
  6. String? type,
})

Implementation

FileUpload({
  this.base64,
  this.lastModified,
  this.lastModifiedDate,
  this.name,
  this.size,
  this.type,
});