RenderSizedBox constructor

RenderSizedBox(
  1. int boxWidth,
  2. int boxHeight
)

Creates a RenderSizedBox with the given dimensions.

Implementation

RenderSizedBox(int boxWidth, int boxHeight)
    : _boxWidth = boxWidth,
      _boxHeight = boxHeight;