RenderCSSBox constructor
      
      RenderCSSBox({})
     
    
    
Implementation
RenderCSSBox({
  required Display display,
  required Width width,
  required Height height,
  required Margins margins,
  required Size borderSize,
  required Size paddingSize,
  required TextDirection textDirection,
  required bool childIsReplaced,
  required bool shrinkWrap,
})  : _display = display,
      _width = width,
      _height = height,
      _margins = margins,
      _borderSize = borderSize,
      _paddingSize = paddingSize,
      _textDirection = textDirection,
      _childIsReplaced = childIsReplaced,
      _shrinkWrap = shrinkWrap;