textButtonLg function

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

Implementation

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