MiniListItem constructor
const
MiniListItem({
- Key? key,
- @Deprecated('Use leading instead. icon will be removed in a future release.') Widget? icon,
- Widget? leading,
- required String title,
- String? subtitle,
- Widget? trailing,
- VoidCallback? onTap,
- EdgeInsetsGeometry? padding,
- bool showArrow = false,
Implementation
const MiniListItem({
super.key,
@Deprecated('Use leading instead. icon will be removed in a future release.')
this.icon,
this.leading,
required this.title,
this.subtitle,
this.trailing,
this.onTap,
this.padding,
this.showArrow = false,
});