noteDestination method
Record heading destinations once page placement is known.
Implementation
@override
void noteDestination(Context context, PwOffset offset) {
onNote?.call(context, offset);
child?.noteDestination(
context,
offset.translate(childOffset.dx, childOffset.dy),
);
}