bodyLarge method

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

Implementation

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