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