TileProps constructor

const TileProps({
  1. String? title,
  2. Widget? titleWidget,
  3. String? subtitle,
  4. Widget? subtitleWidget,
  5. Widget? leading,
  6. Widget? trailing,
  7. bool selected = false,
  8. bool disabled = false,
  9. bool dense = false,
  10. void onTap()?,
  11. String? padding,
})

Implementation

const TileProps({
  this.title,
  this.titleWidget,
  this.subtitle,
  this.subtitleWidget,
  this.leading,
  this.trailing,
  this.selected = false,
  this.disabled = false,
  this.dense = false,
  this.onTap,
  this.padding,
});