FxListTile constructor

FxListTile({
  1. Key? key,
  2. Widget? leading,
  3. required String title,
  4. String? subtitle,
  5. Widget? trailing,
  6. VoidCallback? onTap,
  7. VoidCallback? onLongPress,
  8. EdgeInsetsGeometry? padding,
  9. bool showDivider = false,
})

Implementation

FxListTile({
  super.key,
  this.leading,
  required this.title,
  this.subtitle,
  this.trailing,
  this.onTap,
  this.onLongPress,
  this.padding,
  this.showDivider = false,
});