UpListTile constructor

const UpListTile({
  1. Key? key,
  2. required String title,
  3. UpColorType? colorType,
  4. UpStyle? style,
  5. Widget? subtitle,
  6. Widget? leading,
  7. Widget? trailing,
  8. dynamic onTap()?,
  9. ShapeBorder? shape,
  10. EdgeInsets? contentPadding,
  11. bool isThreeLine = false,
})

Implementation

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