ReplyHeaderMessageViewStyle constructor
const
ReplyHeaderMessageViewStyle({
- Decoration decoration = const BoxDecoration(borderRadius: BorderRadius.all(Radius.circular(10)), color: Color(0xffD0D8EB)),
- TextStyle titleTextStyle = const TextStyle(fontWeight: FontWeight.w600, color: Colors.black, fontSize: 11),
- TextStyle contentTextStyle = const TextStyle(fontWeight: FontWeight.normal, color: Colors.black, fontSize: 13),
- IconStyle mediaIconStyle = const IconStyle(bgColor: Color(0xff7285B5), iconColor: Colors.white),
- 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))});