DSListTile constructor

const DSListTile({
  1. Key? key,
  2. Widget? leading,
  3. required String title,
  4. String? subtitle,
  5. Widget? trailing,
  6. VoidCallback? onTap,
  7. Color? backgroundColor,
})

Implementation

const DSListTile({
  super.key,
  this.leading,
  required this.title,
  this.subtitle,
  this.trailing,
  this.onTap,
  this.backgroundColor,
});