File constructor

File({
  1. String? contents,
  2. DiskPath? diskPath,
  3. String? hashedSize,
  4. bool? partiallyHashed,
  5. String? path,
  6. String? sha256,
  7. String? size,
})

Implementation

File({
  this.contents,
  this.diskPath,
  this.hashedSize,
  this.partiallyHashed,
  this.path,
  this.sha256,
  this.size,
});