FileEntity constructor

const FileEntity({
  1. XFile? pickedFile,
  2. Uint8List? bytes,
  3. String? path,
  4. String? fileName,
  5. String? mimeType = 'Images',
  6. String? uploadingToastTxt,
  7. Map<String, dynamic>? queryParams,
  8. String? imgFieldName,
  9. String? urlFieldName,
  10. String? accessToken,
})

Implementation

const FileEntity({
  this.pickedFile,
  this.bytes,
  this.path,
  this.fileName,
  this.mimeType = 'Images',
  this.uploadingToastTxt,
  this.queryParams,
  this.imgFieldName,
  this.urlFieldName,
  this.accessToken,
});