PumaTile constructor

const PumaTile({
  1. Key? key,
  2. String title = "",
  3. String? subtitle,
  4. String? description,
  5. bool favorite = false,
  6. bool selected = false,
  7. bool verified = false,
  8. double opacity = 1,
  9. Color? textColor,
  10. Widget? heading,
  11. double? height = 72,
  12. IconData trailingIcon = Icons.info_outline,
  13. Widget? subtitleWidget,
  14. void onTap()?,
  15. 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);