blob: c2e682a185cddee0c3394b672a35bc0c6a81214d [file] [log] [blame] [view]
# listNodeNames method
*[<Null safety>](https://dart.dev/null-safety)*
List&lt;String> listNodeNames
()
<p>Returns names of the the nodes present in this directory.</p>
## Implementation
```dart
List<String> listNodeNames() {
return _treeEntries.map((f) => f.name).toList();
}
```