getChildren method
Children of this DebugPropertyNode.
Implementation
@override
List<DebugPropertyNode> getChildren() {
final T? object = value;
if (object is DebugPropertyNode) {
return object.getChildren();
}
return const [];
}
Children of this DebugPropertyNode.
@override
List<DebugPropertyNode> getChildren() {
final T? object = value;
if (object is DebugPropertyNode) {
return object.getChildren();
}
return const [];
}