applyParentOffset method

  1. @override
void applyParentOffset(
  1. Offset offset
)

Overridden from super. Applies offset on all members.

Implementation

@override
void applyParentOffset(ui.Offset offset) {
  for (LineContainer lineContainer in _lineContainers) {
    lineContainer.applyParentOffset(offset);
  }
}