HueRotation constructor

const HueRotation({
  1. required num degrees,
  2. required Widget child,
  3. Key? key,
})

Applies a hue rotation on the color of the child.

Implementation

const HueRotation({
  required this.degrees,
  required this.child,
  Key? key,
}) : super(key: key);