ListItemStyle constructor
const
ListItemStyle({
- TextStyle titleTextStyle = const TextStyle(fontWeight: FontWeight.w600, color: Color(0xff181818), fontSize: 15),
- TextStyle descriptionTextStyle = const TextStyle(fontWeight: FontWeight.normal, color: Color(0xff767676), fontSize: 12),
- Color leadingIconColor = const Color(0xff181818),
- Color trailingIconColor = const Color(0xff767676),
- Color dividerColor = const Color(0xffEBEBEB),
Implementation
const ListItemStyle(
{this.titleTextStyle = const TextStyle(
fontWeight: FontWeight.w600, color: Color(0xff181818), fontSize: 15),
this.descriptionTextStyle = const TextStyle(
fontWeight: FontWeight.normal,
color: Color(0xff767676),
fontSize: 12),
this.leadingIconColor = const Color(0xff181818),
this.trailingIconColor = const Color(0xff767676),
this.dividerColor = const Color(0xffEBEBEB)});