ContactItemStyle constructor

const ContactItemStyle({
  1. Size profileImageSize = const Size(50, 50),
  2. TextStyle titleStyle = const TextStyle(fontWeight: FontWeight.w600, color: Color(0xff181818), fontSize: 14),
  3. TextStyle descriptionStyle = const TextStyle(fontWeight: FontWeight.normal, color: Color(0xff767676), fontSize: 12),
  4. TextStyle actionTextStyle = const TextStyle(fontWeight: FontWeight.w600, color: Color(0xff4879F9), fontSize: 12),
  5. Color spanTextColor = const Color(0xff4879F9),
  6. Color dividerColor = const Color(0xffEBEBEB),
  7. OutlinedBorder checkBoxShape = const RoundedRectangleBorder(borderRadius: BorderRadius.all(Radius.circular(2)), side: BorderSide(color: Color(0xffbdbdbd))),
})

Implementation

const ContactItemStyle(
    {this.profileImageSize = const Size(50, 50),
    this.titleStyle = const TextStyle(
        fontWeight: FontWeight.w600, color: Color(0xff181818), fontSize: 14),
    this.descriptionStyle = const TextStyle(
        fontWeight: FontWeight.normal,
        color: Color(0xff767676),
        fontSize: 12),
    this.actionTextStyle = const TextStyle(
        fontWeight: FontWeight.w600, color: Color(0xff4879F9), fontSize: 12),
    this.spanTextColor = const Color(0xff4879F9),
    this.dividerColor = const Color(0xffEBEBEB),
    this.checkBoxShape = const RoundedRectangleBorder(
        borderRadius: BorderRadius.all(Radius.circular(2)),
        side: BorderSide(color: Color(0xffbdbdbd)))});