CustomContainer constructor
const
CustomContainer({
- Key? key,
- required Widget child,
- double? radius,
- double? blurRadius,
- double? offset,
- Color? color,
- Color? shadowColor,
- double? height,
- double? width,
- EdgeInsetsGeometry? padding,
- Gradient? gradient,
- BoxBorder? border,
- EdgeInsetsGeometry? margin,
- void onTap()?,
- String tooltip = "",
- 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);