add method

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

Adds a value to the end of this array.

Implementation

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