FileTreeNode constructor
FileTreeNode({})
Implementation
FileTreeNode({
required this.name,
required this.path,
required this.isDirectory,
this.size,
List<FileTreeNode>? children,
}) : children = children ?? [];