RenderContainer constructor
RenderContainer({
- Color? color,
- int? width,
- int? height,
- EdgeInsets? padding,
- EdgeInsets? margin,
- Border? border,
Creates a RenderContainer with the given visual properties.
Implementation
RenderContainer({
Color? color,
int? width,
int? height,
this.padding,
this.margin,
this.border,
}) : _color = color,
_width = width,
_height = height;