ContainerBackgroundComponent constructor

const ContainerBackgroundComponent({
  1. required Widget child,
  2. Key? key,
  3. bool useInBorderRadius = false,
  4. EdgeInsetsGeometry? margin,
  5. EdgeInsetsGeometry? padding,
  6. Color? color,
})

Implementation

const ContainerBackgroundComponent({
  required this.child,
  super.key,
  this.useInBorderRadius = false,
  this.margin,
  this.padding,
  this.color,
});