removeAttachment method
Implementation
void removeAttachment(int slotIndex, String name) {
final nativeName = name.toNativeUtf8(allocator: _allocator);
_bindings.spine_skin_remove_attachment(_skin, slotIndex, nativeName.cast());
_allocator.free(nativeName);
}