AdaptiveListTile constructor

AdaptiveListTile({
  1. Key? key,
  2. Widget? leading,
  3. Widget? title,
  4. Widget? subtitle,
  5. Widget? trailing,
  6. bool isThreeLine = false,
  7. bool? dense,
  8. EdgeInsetsGeometry? contentPadding,
  9. bool enabled = true,
  10. GestureTapCallback? onTap,
  11. GestureLongPressCallback? onLongPress,
  12. bool selected = false,
})

Implementation

AdaptiveListTile({
  Key? key,
  this.leading,
  this.title,
  this.subtitle,
  this.trailing,
  this.isThreeLine = false,
  this.dense,
  this.contentPadding,
  this.enabled = true,
  this.onTap,
  this.onLongPress,
  this.selected = false,
}) : super(key: key);