findBone method

Bone? findBone(
  1. String boneName
)

Returns May be NULL.

Implementation

Bone? findBone(String boneName) {
  final result = SpineBindings.bindings.spine_skeleton_find_bone(_ptr, boneName.toNativeUtf8().cast<Char>());
  return result.address == 0 ? null : Bone.fromPointer(result);
}