DirectoryDj constructor

DirectoryDj({
  1. required dynamic name,
  2. List<NodeDj>? nodes,
  3. StructureType type = StructureType.Directory,
})

Implementation

DirectoryDj({
  required name,
  this.nodes,
  StructureType type = StructureType.Directory,
}) : super(
        name: name,
        type: type,
      );