RenderContainer constructor

RenderContainer({
  1. Color? color,
  2. int? width,
  3. int? height,
  4. EdgeInsets? padding,
  5. EdgeInsets? margin,
  6. Border? border,
})

Implementation

RenderContainer({
  this.color,
  int? width,
  int? height,
  this.padding,
  this.margin,
  this.border,
})  : _width = width,
      _height = height;