setC method
Copies the fields of the native struct o into this instance.
Implementation
@override
BoneInfoD setC(BoneInfoC o) {
onOriginalPointer((p) {
p.ref.name = o.name;
});
parent = o.parent;
name = o.name.toDartString(nameLength);
return this;
}