CustomContainer constructor

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

Implementation

const CustomContainer({
  super.key,
  this.width,
  this.height,
  this.onTap,
  this.child,
  this.color,
  this.padding,
  this.margin,
  this.borderRadius,
});