XCardBanner constructor

const XCardBanner(
  1. {Key key,
  2. Function onTap,
  3. @required Color color,
  4. Color shadowColor,
  5. @required Widget title,
  6. @required Widget subTitle,
  7. double rounded,
  8. double blurRadius,
  9. double spreadRadius,
  10. double width,
  11. Widget rightSideChild,
  12. EdgeInsetsGeometry margin,
  13. Widget button}
)

Implementation

const XCardBanner(
    {Key key,
    this.onTap,
    @required this.color,
    this.shadowColor,
    @required this.title,
    @required this.subTitle,
    this.rounded,
    this.blurRadius,
    this.spreadRadius,
    this.width,
    this.rightSideChild,
    this.margin,
    this.button})
    : super(key: key);