getRegularStyle static method

TextStyle getRegularStyle({
  1. double fontSize = s14,
  2. required Color color,
})

Implementation

static TextStyle getRegularStyle({
  double fontSize = s14,
  required Color color,
}) {
  return TextStyle(
    fontSize: fontSize,
    fontWeight: FontWeight.w400,
    color: color,
  );
}