FileMetadata constructor

const FileMetadata({
  1. FileType type = FileType.pack,
  2. String id = '',
  3. String name = '',
  4. String description = '',
  5. String author = '',
  6. String version = '',
  7. Set<String> dependencies = const {},
  8. int fileVersion = kFileVersion,
})

Implementation

const FileMetadata({
  this.type = FileType.pack,
  this.id = '',
  this.name = '',
  this.description = '',
  this.author = '',
  this.version = '',
  this.dependencies = const {},
  this.fileVersion = kFileVersion,
});