updateRenderObject method
Updates the renderObject to reflect the current widget configuration.
Implementation
@override
void updateRenderObject(BuildContext context, RenderObject renderObject) {
final container = renderObject as RenderContainer;
container.color = color;
container.containerWidth = width;
container.containerHeight = height;
container.padding = padding;
container.margin = margin;
container.border = border;
}