applyEach method

TextTheme applyEach(
  1. TextStyle? apply(
    1. TextStyle? original
    )
)

Implementation

TextTheme applyEach(TextStyle? apply(TextStyle? original)) {
  return this.copyWith(
    headline1: apply(headline1),
    headline2: apply(headline2),
    headline3: apply(headline3),
    headline4: apply(headline4),
    headline5: apply(headline5),
    headline6: apply(headline6),
    subtitle1: apply(subtitle1),
    subtitle2: apply(subtitle2),
    bodyText1: apply(bodyText1),
    bodyText2: apply(bodyText2),
    caption: apply(caption),
    button: apply(button),
    overline: apply(overline),
  );
}