CardTile constructor
const
CardTile(- {Key key,
- Radius bottomLeft = Radius.zero,
- Radius bottomRight = Radius.zero,
- double blurRadius = 12,
- Color shadowColor = Colors.grey,
- double rounded = 10,
- Color color = Colors.white,
- Color lineColor = Colors.black,
- EdgeInsetsGeometry padding = const EdgeInsets.all(0.0),
- Widget title,
- Widget subtitle,
- EdgeInsetsGeometry margin,
- 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);