headlineSmall method

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

Implementation

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