File constructor

File({
  1. String? absolutePath,
  2. String? blobId,
  3. FileModeTypeEnum? fileMode,
  4. String? relativePath,
})

Implementation

File({
  this.absolutePath,
  this.blobId,
  this.fileMode,
  this.relativePath,
});