ReplyHeaderMessageViewStyle constructor

const ReplyHeaderMessageViewStyle({
  1. Decoration decoration = const BoxDecoration(borderRadius: BorderRadius.all(Radius.circular(10)), color: Color(0xffD0D8EB)),
  2. TextStyle titleTextStyle = const TextStyle(fontWeight: FontWeight.w600, color: Colors.black, fontSize: 11),
  3. TextStyle contentTextStyle = const TextStyle(fontWeight: FontWeight.normal, color: Colors.black, fontSize: 13),
  4. IconStyle mediaIconStyle = const IconStyle(bgColor: Color(0xff7285B5), iconColor: Colors.white),
  5. BorderRadius borderRadius = const BorderRadius.only(topRight: Radius.circular(5), bottomRight: Radius.circular(5)),
})

Implementation

const ReplyHeaderMessageViewStyle(
    {this.decoration = const BoxDecoration(
      borderRadius: BorderRadius.all(Radius.circular(10)),
      color: Color(0xffD0D8EB),
    ),
    this.titleTextStyle = const TextStyle(
        fontWeight: FontWeight.w600, color: Colors.black, fontSize: 11),
    this.contentTextStyle = const TextStyle(
        fontWeight: FontWeight.normal, color: Colors.black, fontSize: 13),
    this.mediaIconStyle =
        const IconStyle(bgColor: Color(0xff7285B5), iconColor: Colors.white),
    this.borderRadius = const BorderRadius.only(
        topRight: Radius.circular(5), bottomRight: Radius.circular(5))});