textButtonSm function

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

Implementation

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