BasicListTile constructor

const BasicListTile({
  1. Key? key,
  2. Widget? title,
  3. Widget? subtitle,
  4. VoidCallback? onTap,
  5. VoidCallback? onLongPress,
  6. Widget? leading,
  7. Widget? trailing,
  8. bool enabled = true,
  9. bool selected = false,
  10. bool? enableFeedback,
  11. BasicBorder border = const BasicBorder.none(),
})

Implementation

const BasicListTile({
  super.key,
  this.title,
  this.subtitle,
  this.onTap,
  this.onLongPress,
  this.leading,
  this.trailing,
  this.enabled = true,
  this.selected = false,
  this.enableFeedback,
  this.border = const BasicBorder.none(),
});