setD method
Copies the fields of the Dart struct o into this instance.
Implementation
@override
ModelAnimationD setD(ModelAnimationD o) {
originalPointer ??= o.originalPointer;
bones = .from(o.bones);
framePoses = .from(o.framePoses);
name = o.name;
return this;
}