withBrightness method

TextTheme withBrightness(
  1. Brightness brightness
)

Implementation

TextTheme withBrightness(Brightness brightness) {
  return this.applyEach((original) => original?.copyWith(color: original.color?.withBrightness(brightness)));
}