unwrapOffset method

  1. @override
Offset unwrapOffset(
  1. double cross,
  2. double main,
  3. Size size
)
override

Gets the offset at the specified cross and main axis extents.

If this boxy is not a RenderSliver, assume the axis is vertical.

Implementation

@override
Offset unwrapOffset(double cross, double main, Size size) {
  return constraints.unwrap(cross, main, size);
}