hsv2hex static method

String hsv2hex(
  1. int h,
  2. double s,
  3. double v
)

Converts HSV values to a hex string.

Returns a string representing the hex value. ffffffff

Implementation

static String hsv2hex(int h, double s, double v) {
  final List<int> rgb = hsv2rgb(h, s, v);
  return rgb2hex(rgb[0], rgb[1], rgb[2]);
}