withBrightness method

TextStyle withBrightness(
  1. BuildContext context
)

Implementation

TextStyle withBrightness(BuildContext context) {
  return this.copyWith(color: this.color?.resolveFrom(context));
}