RoundedContainer constructor

const RoundedContainer({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsetsGeometry? padding,
  4. EdgeInsetsGeometry? margin,
  5. Color? color,
  6. Gradient? gradient,
  7. double borderRadius = 16,
  8. Border? border,
  9. List<BoxShadow>? boxShadow,
  10. double? width,
  11. double? height,
})

Implementation

const RoundedContainer({
  Key? key,
  required this.child,
  this.padding,
  this.margin,
  this.color,
  this.gradient,
  this.borderRadius = 16,
  this.border,
  this.boxShadow,
  this.width,
  this.height,
}) : super(key: key);