File constructor

File({
  1. String? path,
  2. bool? isDir,
  3. String? name,
  4. String? mimeType,
  5. int? size,
  6. String? eTag,
  7. DateTime? cTime,
  8. DateTime? mTime,
})

Implementation

File({
  this.path,
  this.isDir,
  this.name,
  this.mimeType,
  this.size,
  this.eTag,
  this.cTime,
  this.mTime,
});