UpListTile constructor

const UpListTile({
  1. Key? key,
  2. String? title,
  3. UpColorType? colorType,
  4. UpStyle? style,
  5. Widget? titleWidget,
  6. ListTileTitleAlignment? listTileTitleAlignment,
  7. Widget? subtitle,
  8. Widget? leading,
  9. Widget? trailing,
  10. dynamic onTap()?,
  11. ShapeBorder? shape,
  12. EdgeInsets? contentPadding,
  13. bool isSelected = false,
  14. bool isThreeLine = false,
  15. IconData? leadingIcon,
  16. IconData? trailingIcon,
})

Implementation

const UpListTile({
  Key? key,
  this.title,
  this.colorType,
  this.style,
  this.titleWidget,
  this.listTileTitleAlignment,
  this.subtitle,
  this.leading,
  this.trailing,
  this.onTap,
  this.shape,
  this.contentPadding,
  this.isSelected = false,
  this.isThreeLine = false,
  this.leadingIcon,
  this.trailingIcon,
}) : super(key: key);