TileProps constructor

const TileProps({
  1. String? title,
  2. Component? titleWidget,
  3. String? subtitle,
  4. Component? subtitleWidget,
  5. Component? leading,
  6. Component? 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,
});