FxListTile constructor
FxListTile({
- Key? key,
- Widget? leading,
- required String title,
- String? subtitle,
- Widget? trailing,
- VoidCallback? onTap,
- VoidCallback? onLongPress,
- EdgeInsetsGeometry? padding,
- 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,
});