TListTileWithDesc constructor

TListTileWithDesc({
  1. Key? key,
  2. required String title,
  3. Widget? trailing,
  4. String desc = '',
  5. Widget? leading,
  6. double spacing = 10,
  7. void onClick()?,
})

Implementation

TListTileWithDesc({
  super.key,
  required this.title,
  this.trailing,
  this.desc = '',
  this.leading,
  this.spacing = 10,
  this.onClick,
});