XContainer constructor

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

Implementation

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