ArrayAttachment constructor
ArrayAttachment()
Create a new empty array
Implementation
factory ArrayAttachment() {
final ptr = SpineBindings.bindings.spine_array_attachment_create();
return ArrayAttachment.fromPointer(ptr.cast(), ownsMemory: true);
}