textSub2Underlined function

TextStyle textSub2Underlined({
  1. Color? color,
})

Implementation

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