titleLarge method

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

Implementation

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