Tile constructor

const Tile({
  1. ArcaneGlyph? leading,
  2. String? titleText,
  3. String? subtitleText,
  4. void onPressed()?,
  5. String? href,
  6. bool selected = false,
  7. bool disabled = false,
  8. Key? key,
})

Implementation

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