textBody2Underlined function
Implementation
TextStyle textBody2Underlined({Color? color}) {
return TextStyle(
fontSize: 14,
fontWeight: FontWeight.w400,
color: color ?? Colors.black,
fontFamily: Strings.fontFamily,
decoration: TextDecoration.underline,
);
}