hueInDegrees property

num? hueInDegrees

The hsl hue, or direction, of color, in degrees.

Implementation

num? get hueInDegrees {
  final h = _h();
  if (h == null) return null;
  return 60 * h;
}