ContactMessageViewStyle constructor

const ContactMessageViewStyle({
  1. TextMessageViewStyle textMessageViewStyle = const TextMessageViewStyle(textStyle: TextStyle(fontWeight: FontWeight.normal, color: Colors.black, fontSize: 14), timeTextStyle: TextStyle(fontWeight: FontWeight.normal, color: Color(0xff455E93), fontSize: 11)),
  2. TextStyle viewTextStyle = const TextStyle(fontWeight: FontWeight.normal, color: Colors.black, fontSize: 12),
  3. Size profileImageSize = const Size(30, 30),
  4. Color dividerColor = const Color(0xffD2D8E8),
})

Implementation

const ContactMessageViewStyle(
    {this.textMessageViewStyle = const TextMessageViewStyle(
        textStyle: TextStyle(
            fontWeight: FontWeight.normal, color: Colors.black, fontSize: 14),
        timeTextStyle: TextStyle(
            fontWeight: FontWeight.normal,
            color: Color(0xff455E93),
            fontSize: 11)),
    this.viewTextStyle = const TextStyle(
        fontWeight: FontWeight.normal, color: Colors.black, fontSize: 12),
    this.profileImageSize = const Size(30, 30),
    this.dividerColor = const Color(0xffD2D8E8)});