ListTile constructor
ListTile({})
Implementation
ListTile({
required Object? title,
Object? subtitle,
this.leadingIcon,
this.trailingIcon,
this.dense = false,
this.color,
this.borderRadius,
this.contentPadding,
Object? onTap,
String? name,
Object? visible,
}) : title = normalizeExpression(title),
subtitle = normalizeNullableExpression(subtitle),
onTap = normalizeActionSequence(onTap, parameterName: 'onTap'),
super(name: name, visible: _normalizeVisibility(visible));