Sequence.from constructor
Sequence.from(
- Sequence other
Copy constructor.
Implementation
factory Sequence.from(Sequence other) {
final ptr = SpineBindings.bindings.spine_sequence_create2(other.nativePtr.cast());
return Sequence.fromPointer(ptr);
}