RenderContainer constructor
RenderContainer({
- Color? color,
- int? width,
- int? height,
- EdgeInsets? padding,
- EdgeInsets? margin,
- Border? border,
Implementation
RenderContainer({
this.color,
int? width,
int? height,
this.padding,
this.margin,
this.border,
}) : _width = width,
_height = height;