RepoEntry constructor

const RepoEntry({
  1. required String path,
  2. required String name,
  3. required bool isDir,
  4. int? size,
})

Implementation

const RepoEntry({
  required this.path,
  required this.name,
  required this.isDir,
  this.size,
});