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()?,
  8. bool isUseCardWidget = true,
  9. EdgeInsetsGeometry padding = const EdgeInsets.all(8.0),
})

Implementation

TListTileWithDesc({
  super.key,
  required this.title,
  this.trailing,
  this.desc = '',
  this.leading,
  this.spacing = 10,
  this.onClick,
  this.isUseCardWidget = true,
  this.padding = const EdgeInsets.all(8.0),
});