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) {
  onNote?.call(context, offset);
  child?.noteDestination(
    context,
    offset.translate(childOffset.dx, childOffset.dy),
  );
}