GetFolderOutput constructor

GetFolderOutput({
  1. required String commitId,
  2. required String folderPath,
  3. List<File>? files,
  4. List<Folder>? subFolders,
  5. List<SubModule>? subModules,
  6. List<SymbolicLink>? symbolicLinks,
  7. String? treeId,
})

Implementation

GetFolderOutput({
  required this.commitId,
  required this.folderPath,
  this.files,
  this.subFolders,
  this.subModules,
  this.symbolicLinks,
  this.treeId,
});