noteDestination method

  1. @override
void noteDestination(
  1. Context context,
  2. PwOffset offset
)
override

Record heading destinations once page placement is known.

Implementation

@override
void noteDestination(Context context, PwOffset offset) {
  for (final (PwBox box, PwOffset childOffset) in children) {
    box.noteDestination(
      context,
      offset.translate(childOffset.dx, childOffset.dy),
    );
  }
}