findBone method
Implementation
Bone? findBone(String boneName) {
final nameNative = boneName.toNativeUtf8(allocator: _allocator);
final bone = _bindings.spine_skeleton_find_bone(_skeleton, nameNative.cast());
_allocator.free(nameNative);
if (bone.address == nullptr.address) return null;
return Bone._(bone);
}