noteDestination method
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),
);
}
}