textCaption2 function

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

Implementation

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