childNamed method
Implementation
LSLXmlNode? childNamed(String name) {
final childPtr = lsl_child(
xmlPtr,
name.toNativeUtf8(allocator: allocate).cast<Char>(),
);
if (childPtr.isNullPointer) {
return null;
}
return LSLXmlNode.fromXmlPtr(childPtr);
}