bodySmall method

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

Implementation

TextStyle bodySmall({Color? color}) {
  return TextStyle(
    fontSize: font.bodySmall.fontSize,
    fontWeight: font.bodySmall.fontWeight,
    color: color,
  );
}