PumaTile constructor
const
PumaTile({
- Key? key,
- String title = "",
- String? subtitle,
- String? description,
- bool favorite = false,
- bool selected = false,
- bool verified = false,
- double opacity = 1,
- Color? textColor,
- Widget? heading,
- double? height = 72,
- IconData trailingIcon = Icons.info_outline,
- Widget? subtitleWidget,
- void onTap()?,
- void onTrailingTap()?,
Implementation
const PumaTile({
Key? key,
this.title = "",
this.subtitle,
this.description,
this.favorite = false,
this.selected = false,
this.verified = false,
this.opacity = 1,
this.textColor,
this.heading,
this.height = 72,
this.trailingIcon = Icons.info_outline,
this.subtitleWidget,
this.onTap,
this.onTrailingTap,
}) : super(key: key);