transformColor property

void transformColor=(Color transform(Color)?)

Same as Themed.of(context).transformColor = ...;

Sets a transform which will be applied to all colors.

Implementation

static set transformColor(Color Function(Color)? transform) {
  _setTransformColor(transform);
  _themedKey.currentState?.setState(() {}); // ignore: invalid_use_of_protected_member
}