Tile constructor

const Tile({
  1. Widget? title,
  2. Widget? subtitle,
  3. Widget? leading,
  4. Widget? trailing,
  5. String? titleText,
  6. String? subtitleText,
  7. void onPressed()?,
  8. String? href,
  9. bool selected = false,
  10. bool disabled = false,
  11. Key? key,
})

Implementation

const Tile({
  this.title,
  this.subtitle,
  this.leading,
  this.trailing,
  this.titleText,
  this.subtitleText,
  this.onPressed,
  this.href,
  this.selected = false,
  this.disabled = false,
  super.key,
});