textSub1 function

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

Implementation

TextStyle textSub1({Color? color}) {
  return TextStyle(
    fontSize: 16,
    fontWeight: FontWeight.w600,
    color: color ?? Colors.black,
    fontFamily: Strings.fontFamily,
  );
}