ChangeColors constructor

ChangeColors({
  1. Key? key,
  2. double brightness = 0.0,
  3. double saturation = 0.0,
  4. double hue = 0.0,
  5. required Widget child,
})

Implementation

ChangeColors({
  Key? key,
  this.brightness = 0.0,
  double saturation = 0.0,
  this.hue = 0.0,
  required this.child,
})  : saturation = _clampSaturation(saturation),
      super(key: key);