setC method

  1. @override
BoneInfoD setC(
  1. BoneInfoC o
)
override

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;
}