XStaticCard constructor

const XStaticCard(
  1. {Key key,
  2. double width,
  3. EdgeInsetsGeometry padding,
  4. Color shadowColor,
  5. double rounded,
  6. double blurRadius,
  7. double spreadRadius,
  8. Function onTap,
  9. EdgeInsetsGeometry margin,
  10. @required IconData icon,
  11. @required Widget title,
  12. @required Widget value,
  13. @required Color cicleColor,
  14. Color bgColor}
)

Implementation

const XStaticCard(
    {Key key,
    this.width,
    this.padding,
    this.shadowColor,
    this.rounded,
    this.blurRadius,
    this.spreadRadius,
    this.onTap,
    this.margin,
    @required this.icon,
    @required this.title,
    @required this.value,
    @required this.cicleColor,
    this.bgColor})
    : super(key: key);