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