FilesLsEntry constructor

FilesLsEntry({
  1. String name = '',
  2. FilesLsEntryType type = FilesLsEntryType.file,
  3. int size = 0,
  4. String hash = '',
})

Implementation

FilesLsEntry({
  this.name = '',
  this.type = FilesLsEntryType.file,
  this.size = 0,
  this.hash = '',
});