void addChildren(List<NodeV3> elements, [int? position]) { if (position == null) { children.addAll(elements); } else { children.insertAll(position, elements); } }