RoundedContainer constructor

const RoundedContainer({
  1. Key? key,
  2. EdgeInsetsGeometry? margin,
  3. EdgeInsetsGeometry? padding,
  4. required Widget child,
  5. Color? backgroundColor,
  6. Gradient? backgroundGradient,
  7. Color? borderColor,
  8. double borderRadius = 10,
  9. double borderWidth = 1,
  10. double? elevation,
  11. Color? shadowColor,
  12. Clip clipBehavior = Clip.none,
})

Implementation

const RoundedContainer({
  super.key,
  this.margin,
  this.padding,
  required this.child,
  this.backgroundColor,
  this.backgroundGradient,
  this.borderColor,
  this.borderRadius = 10,
  this.borderWidth = 1,
  this.elevation,
  this.shadowColor,
  this.clipBehavior = Clip.none,
});