RoundedContainer constructor

RoundedContainer({
  1. double? height,
  2. double? width,
  3. Widget? child,
  4. Color? containerBGColor,
  5. double? marginLeft,
  6. double? marginBottom,
  7. double? marginRight,
  8. double? marginTop,
  9. Color? containerBorderColor,
})

Implementation

RoundedContainer(
    {this.height,
    this.width,
    this.child,
    this.containerBGColor,
    this.marginLeft,
    this.marginBottom,
    this.marginRight,
    this.marginTop,
    this.containerBorderColor});