ArrayUnsignedShort constructor

ArrayUnsignedShort()

Create a new empty array

Implementation

factory ArrayUnsignedShort() {
  final ptr = SpineBindings.bindings.spine_array_unsigned_short_create();
  return ArrayUnsignedShort.fromPointer(ptr.cast(), ownsMemory: true);
}