setD method

  1. @override
GlyphInfoD setD(
  1. GlyphInfoD o
)
override

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