setAttachmentName method

void setAttachmentName(
  1. String attachmentName
)

Implementation

void setAttachmentName(String attachmentName) {
  final nativeName = attachmentName.toNativeUtf8(allocator: _allocator);
  _bindings.spine_slot_data_set_attachment_name(_data, nativeName.cast());
  _allocator.free(nativeName);
}