createRenderer method
Creates an instance of the RenderObject class that this
RenderObjectNode represents, using the configuration described by this
RenderObjectNode.
This method should not do anything with the children of the render object.
That should instead be handled by the method that overrides
Node.attachTo in the object rendered by this object.
Implementation
@override
RenderBox createRenderer() {
if (renderBoxModel != null) {
return renderBoxModel!;
}
_updateRenderBoxModel();
return renderBoxModel!;
}