xContainer method
Widget
xContainer
(- {double width,
- Color color,
- EdgeInsetsGeometry padding,
- Color shadowColor,
- double rounded,
- double height,
- double blurRadius,
- double spreadRadius,
- Offset offset,
- Function onTap,
- EdgeInsetsGeometry margin,
- DecorationImage image,
- Key key,
- BorderRadiusGeometry borderRadius}
)
Implementation
Widget xContainer({
double width,
Color color,
EdgeInsetsGeometry padding,
Color shadowColor,
double rounded,
double height,
double blurRadius,
double spreadRadius,
Offset offset,
Function onTap,
EdgeInsetsGeometry margin,
DecorationImage image,
Key key,
BorderRadiusGeometry borderRadius,
}) {
return XContainer(
blurRadius: blurRadius,
borderRadius: borderRadius,
color: color,
height: height,
image: image,
key: key,
margin: margin,
offset: offset,
onTap: onTap,
padding: padding,
rounded: rounded,
shadowColor: shadowColor,
spreadRadius: spreadRadius,
width: width,
child: this,
);
}