hasChildren method
Whether the given node has children.
Implementation
bool hasChildren(TKey key) {
final c = _childListOf(key);
return c != null && c.isNotEmpty;
}
Whether the given node has children.
bool hasChildren(TKey key) {
final c = _childListOf(key);
return c != null && c.isNotEmpty;
}