leastIntense property

O leastIntense

Returns the color with the lowest intensity value.

Implementation

O get leastIntense => colors.reduce((color1, color2) {
      return color1.toHsiColor().intensity < color2.toHsiColor().intensity
          ? color1
          : color2;
    });