RichListTile constructor

const RichListTile({
  1. Key? key,
  2. String? title,
  3. Widget? titleWidget,
  4. String? subtitle,
  5. Widget? subtitleWidget,
  6. Widget? leading,
  7. Widget? trailing,
  8. List<Widget> actions = const [],
})

Implementation

const RichListTile(
    {super.key,
    this.title,
    this.titleWidget,
    this.subtitle,
    this.subtitleWidget,
    this.leading,
    this.trailing,
    this.actions = const []});