getValueAs<U> method

U getValueAs<U>(
  1. String name,
  2. Folder dir
)

Get the immediate child of this node named name and its value at dir.

Implementation

U getValueAs<U>(String name, Folder dir) =>
    _children[name]?.valueAt(dir) as U;