unwrapOffset method

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

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

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

Implementation

Offset unwrapOffset(double cross, double main, Size size) {
  return Offset(cross, main);
}