titleSmall method

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

Implementation

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