textCaption2Underlined function

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

Implementation

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