ListItem constructor
const
ListItem({
- Key? key,
- Widget? leading,
- required Widget title,
- Widget? trailing,
- dynamic onTap()?,
- EdgeInsetsGeometry? dividerPadding,
Implementation
const ListItem(
{Key? key,
this.leading,
required this.title,
this.trailing,
this.onTap,
this.dividerPadding})
: super(key: key);