xContainerGradient method

Widget xContainerGradient (
  1. {double width,
  2. Gradient gradient,
  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 xContainerGradient({
  double width,
  Gradient gradient,
  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 XContainerGradient(
    blurRadius: blurRadius,
    borderRadius: borderRadius,
    gradient: gradient,
    height: height,
    key: key,
    margin: margin,
    offset: offset,
    onTap: onTap,
    padding: padding,
    rounded: rounded,
    shadowColor: shadowColor,
    spreadRadius: spreadRadius,
    width: width,
    child: this,
  );
}