RegionAttachment constructor
Implementation
factory RegionAttachment(String name, Sequence? sequence) {
final ptr = SpineBindings.bindings.spine_region_attachment_create(
name.toNativeUtf8().cast<Char>(), sequence?.nativePtr.cast() ?? Pointer.fromAddress(0));
return RegionAttachment.fromPointer(ptr);
}