findSlot method
Implementation
Slot? findSlot(String slotName) {
final nameNative = slotName.toNativeUtf8(allocator: _allocator);
final slot = _bindings.spine_skeleton_find_slot(_skeleton, nameNative.cast());
_allocator.free(nameNative);
if (slot.address == nullptr.address) return null;
return Slot._(slot);
}