ClippingAttachment constructor

ClippingAttachment(
  1. String name
)

Implementation

factory ClippingAttachment(String name) {
  final ptr = SpineBindings.bindings.spine_clipping_attachment_create(name.toNativeUtf8().cast<Char>());
  return ClippingAttachment.fromPointer(ptr);
}