onHsv method

String onHsv(
  1. num hue,
  2. num saturation,
  3. num value
)

Creates chalk with background color defined from HSV (Hue, Saturation and Value) color space parameters. https://en.wikipedia.org/wiki/HSL_and_HSV

Implementation

String onHsv(num hue, num saturation, num value) =>
    (_chalk.onHsv(hue, saturation, value))(this);