CardTile constructor

const CardTile(
  1. {Key key,
  2. Radius bottomLeft = Radius.zero,
  3. Radius bottomRight = Radius.zero,
  4. double blurRadius = 12,
  5. Color shadowColor = Colors.grey,
  6. double rounded = 10,
  7. Color color = Colors.white,
  8. Color lineColor = Colors.black,
  9. EdgeInsetsGeometry padding = const EdgeInsets.all(0.0),
  10. Widget title,
  11. Widget subtitle,
  12. EdgeInsetsGeometry margin,
  13. Function onTap}
)

Implementation

const CardTile(
    {Key key,
    this.bottomLeft = Radius.zero,
    this.bottomRight = Radius.zero,
    this.blurRadius = 12,
    this.shadowColor = Colors.grey,
    this.rounded = 10,
    this.color = Colors.white,
    this.lineColor = Colors.black,
    this.padding = const EdgeInsets.all(0.0),
    this.title,
    this.subtitle,
    this.margin,
    this.onTap})
    : super(key: key);