apply method

TextTheme apply({
  1. Color? color,
})

Returns a copy of this TextTheme with the given color applied to all text styles.

Implementation

TextTheme apply({Color? color}) => copyWith(
  h1: h1.copyWith(color: color),
  h2: h2.copyWith(color: color),
  h3: h3.copyWith(color: color),
  h4: h4.copyWith(color: color),
  h5: h5.copyWith(color: color),
  h6: h6.copyWith(color: color),
  large: large.copyWith(color: color),
  body: body.copyWith(color: color),
  small: small.copyWith(color: color),
);