XContainerGradient constructor

const XContainerGradient(
  1. {Key key,
  2. double height,
  3. double width,
  4. @required Gradient gradient,
  5. Color shadowColor,
  6. double rounded,
  7. EdgeInsetsGeometry padding,
  8. @required Widget child,
  9. double blurRadius,
  10. double spreadRadius,
  11. Offset offset,
  12. Function onTap,
  13. EdgeInsetsGeometry margin,
  14. BorderRadiusGeometry borderRadius,
  15. DecorationImage image}
)

Implementation

const XContainerGradient(
    {Key key,
    this.height,
    this.width,
    @required this.gradient,
    this.shadowColor,
    this.rounded,
    this.padding,
    @required this.child,
    this.blurRadius,
    this.spreadRadius,
    this.offset,
    this.onTap,
    this.margin,
    this.borderRadius,
    this.image})
    : super(key: key);