Node constructor

Node({
  1. String dirName = '.',
  2. Map<String, String>? files,
  3. List<Node>? children,
})

Implementation

Node({
  this.dirName = '.',
  Map<String, String>? files,
  List<Node>? children,
})  : files = files ?? {},
      children = children ?? [];