RoundedContainer constructor

const RoundedContainer({
  1. Key? key,
  2. Widget? child,
  3. EdgeInsetsGeometry? margin,
  4. BoxShape? shape,
  5. BorderRadiusGeometry? borderRadius,
  6. EdgeInsetsGeometry? padding,
  7. Color? color,
  8. double? height,
  9. double? width,
})

Implementation

const RoundedContainer(
    {Key? key,
    this.child,
    this.margin,
    this.shape,
    this.borderRadius,
    this.padding,
    this.color,
    this.height,
    this.width})
    : super(key: key);