AppListTile constructor

const AppListTile({
  1. Key? key,
  2. Widget? leading,
  3. Widget? title,
  4. Widget? subtitle,
  5. Widget? trailing,
  6. double? elevation,
  7. VoidCallback? onTap,
  8. VoidCallback? onLongPress,
  9. EdgeInsets? contentPadding,
  10. double? minVerticalPadding,
  11. bool isFirst = true,
  12. bool isLast = true,
})

Implementation

const AppListTile({
  super.key,
  this.leading,
  this.title,
  this.subtitle,
  this.trailing,
  this.elevation,
  this.onTap,
  this.onLongPress,
  this.contentPadding,
  this.minVerticalPadding,
  this.isFirst = true,
  this.isLast = true,
});