CustomListTile constructor

const CustomListTile({
  1. Key? key,
  2. dynamic onTap()?,
  3. Widget? leading,
  4. Widget? title,
  5. Widget? subtitle,
  6. Widget? description,
  7. Widget? trailing,
  8. Widget? trailingTop,
  9. Widget? trailingBottom,
  10. CrossAxisAlignment? tileAlignment,
  11. MainAxisSize? mainAxisSize,
  12. Color? backgroundColor,
  13. double? borderRadius,
  14. EdgeInsetsGeometry? contentPadding,
  15. double? spaceBetweenLeadingAndTitle,
  16. double? spaceBetweenTrailingAndTitle,
  17. double? spaceBetweenTitleAndSubtitle,
  18. CrossAxisAlignment? titleAndSubtitleAlignment,
  19. EdgeInsetsGeometry? descriptionPadding,
  20. Color? splashColor,
})

Implementation

const CustomListTile({
  Key? key,
  this.onTap,
  this.leading,
  this.title,
  this.subtitle,
  this.description,
  this.trailing,
  this.trailingTop,
  this.trailingBottom,
  this.tileAlignment,
  this.mainAxisSize,
  this.backgroundColor,
  this.borderRadius,
  this.contentPadding,
  this.spaceBetweenLeadingAndTitle,
  this.spaceBetweenTrailingAndTitle,
  this.spaceBetweenTitleAndSubtitle,
  this.titleAndSubtitleAlignment,
  this.descriptionPadding,
  this.splashColor,
}) : super(key: key);