getChildrenOf method
Returns the children of key
.
Will call childrenGetter.
Should be overwritten if childrenGetter is null.
Implementation
Iterable<K> getChildrenOf(K? key) =>
key == null ? <K>[] : childrenGetter!(key);
Returns the children of key
.
Will call childrenGetter.
Should be overwritten if childrenGetter is null.
Iterable<K> getChildrenOf(K? key) =>
key == null ? <K>[] : childrenGetter!(key);