ListItemStyle constructor

const ListItemStyle({
  1. TextStyle titleTextStyle = const TextStyle(fontWeight: FontWeight.w600, color: Color(0xff181818), fontSize: 15),
  2. TextStyle descriptionTextStyle = const TextStyle(fontWeight: FontWeight.normal, color: Color(0xff767676), fontSize: 12),
  3. Color leadingIconColor = const Color(0xff181818),
  4. Color trailingIconColor = const Color(0xff767676),
  5. 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)});