XCardListTileGradient constructor

const XCardListTileGradient(
  1. {Key key,
  2. double width = 300,
  3. Widget title,
  4. Widget subTitle,
  5. Widget leading,
  6. Function onTap,
  7. @required Gradient gradient,
  8. Color shadowColor,
  9. double blurRadius = 12,
  10. double rounded,
  11. Widget trailing}
)

Implementation

const XCardListTileGradient(
    {Key key,
    this.width = 300,
    this.title,
    this.subTitle,
    this.leading,
    this.onTap,
    @required this.gradient,
    this.shadowColor,
    this.blurRadius = 12,
    this.rounded,
    this.trailing})
    : super(key: key);