MUIPrimaryListTile constructor

const MUIPrimaryListTile({
  1. Key? key,
  2. required Widget title,
  3. required Widget description,
  4. Widget? leading,
  5. Widget? action,
  6. Color bgColor = Colors.black,
  7. double maxWidth = 430,
  8. double borderRadius = 10,
  9. VoidCallback? onTitlePressed,
  10. VoidCallback? onDescriptionPressed,
  11. VoidCallback? onPressed,
})

Implementation

const MUIPrimaryListTile({
  super.key,
  required this.title,
  required this.description,
  this.leading,
  this.action,
  this.bgColor = Colors.black,
  this.maxWidth = 430,
  this.borderRadius = 10,
  this.onTitlePressed,
  this.onDescriptionPressed,
  this.onPressed,
});