dullest property

O dullest

Returns the color with the lowest saturation value.

Implementation

O get dullest => colors.reduce((color1, color2) =>
    color1.saturation < color2.saturation ? color1 : color2);