FileData constructor

FileData({
  1. bool hasFile = false,
  2. String fileName = "",
  3. String filePath = "",
  4. String fileMimeType = "",
  5. String path = "",
  6. String otherDevicePath = "",
})

Implementation

FileData({
  this.hasFile = false,
  this.fileName = "",
  this.filePath = "",
  this.fileMimeType = "",
  this.path = "",
  this.otherDevicePath = "",
});