File constructor

File({
  1. String? content,
  2. String? fingerprint,
  3. String? name,
})

Implementation

File({
  this.content,
  this.fingerprint,
  this.name,
});