CustomContainer constructor

const CustomContainer({
  1. Key? key,
  2. required Widget child,
  3. double? radius,
  4. double? blurRadius,
  5. double? offset,
  6. Color? color,
  7. Color? shadowColor,
  8. double? height,
  9. double? width,
  10. EdgeInsetsGeometry? padding,
  11. Gradient? gradient,
  12. BoxBorder? border,
  13. EdgeInsetsGeometry? margin,
  14. void onTap()?,
  15. String tooltip = "",
  16. AlignmentGeometry? alignment,
})

Implementation

const CustomContainer({
  Key? key,
  required this.child,
  this.radius,
  this.blurRadius,
  this.offset,
  this.color,
  this.shadowColor,
  this.height,
  this.width,
  this.padding,
  this.gradient,
  this.border,
  this.margin,
  this.onTap,
  this.tooltip = "",
  this.alignment,
}) : super(key: key);