FileNote constructor

FileNote({
  1. List<String>? checksum,
  2. String? fileType,
  3. String? title,
})

Implementation

FileNote({
  this.checksum,
  this.fileType,
  this.title,
});