setD method
Copies the fields of the Dart struct o into this instance.
Implementation
@override
GlyphInfoD setD(GlyphInfoD o) {
originalPointer ??= o.originalPointer;
value = o.value;
offsetX = o.offsetX;
offsetY = o.offsetY;
advanceX = o.advanceX;
image.setD(o.image);
return this;
}