ContainerCustom constructor

const ContainerCustom({
  1. Key? key,
  2. required Widget children,
  3. BorderRadiusGeometry? cornerRadius,
  4. Color? color,
  5. Gradient? gradient,
  6. dynamic onTap()?,
  7. double? height,
  8. BoxBorder? border,
  9. EdgeInsets? padding,
  10. Color? cornerRadiusColor,
  11. bool? setBounceEffect = false,
  12. double? width,
  13. AlignmentGeometry? alignment,
  14. String? backgroundAssetImage,
  15. bool? canPop,
})

Implementation

const ContainerCustom({
  Key? key,
  required this.children,
  this.cornerRadius,
  this.color,
  this.gradient,
  this.onTap,
  this.height,
  this.border,
  this.padding,
  this.cornerRadiusColor,
  this.setBounceEffect = false,
  this.width,
  this.alignment,
  this.backgroundAssetImage,
  this.canPop,
}) : super(key: key);