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