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);
  _setState();
}