textCaption function

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

Implementation

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