BasicListTile constructor
const
BasicListTile({
- Key? key,
- Widget? title,
- Widget? subtitle,
- VoidCallback? onTap,
- VoidCallback? onLongPress,
- Widget? leading,
- Widget? trailing,
- bool enabled = true,
- bool selected = false,
- bool? enableFeedback,
- BasicBorder border = const BasicBorder.none(),
Implementation
const BasicListTile({
super.key,
this.title,
this.subtitle,
this.onTap,
this.onLongPress,
this.leading,
this.trailing,
this.enabled = true,
this.selected = false,
this.enableFeedback,
this.border = const BasicBorder.none(),
});