add method

  1. @override
void add(
  1. Attachment? value
)
override

Adds a value to the end of this array.

Implementation

@override
void add(Attachment? value) {
  SpineBindings.bindings
      .spine_array_attachment_add(nativePtr.cast(), value?.nativePtr.cast() ?? Pointer.fromAddress(0));
}