DebugListTile constructor

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

Creates a debug list tile.

Implementation

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