mostIntense property

O mostIntense

Returns the color with the highest intensity value.

Implementation

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