xContainer method

Widget xContainer (
  1. {double width,
  2. Color color,
  3. EdgeInsetsGeometry padding,
  4. Color shadowColor,
  5. double rounded,
  6. double height,
  7. double blurRadius,
  8. double spreadRadius,
  9. Offset offset,
  10. Function onTap,
  11. EdgeInsetsGeometry margin,
  12. DecorationImage image,
  13. Key key,
  14. 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,
  );
}