textH6 function

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

Implementation

TextStyle textH6({Color? color}) {
  return TextStyle(
    fontSize: 18,
    fontWeight: FontWeight.w700,
    color: color ?? Colors.black,
    fontFamily: Strings.fontFamily,
  );
}