textButtonMd function

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

Implementation

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