updateRenderObject method
Updates the renderObject to reflect the current widget configuration.
Implementation
@override
void updateRenderObject(BuildContext context, RenderObject renderObject) {
final sizedBox = renderObject as RenderSizedBox;
sizedBox.boxWidth = width;
sizedBox.boxHeight = height;
}