applyParentOffset method

void applyParentOffset(
  1. Offset offset
)

Implementation

void applyParentOffset(ui.Offset offset) {
  for (PointsColumn column in this) {
    column.allPoints().forEach((StackableValuePoint point) {
      point.applyParentOffset(offset);
    });
  }
}