isMonochromatic property

  1. @override
bool isMonochromatic
override

Returns true if this color is monochromatic.

Implementation

@override
bool get isMonochromatic =>
    ColorMath.round(brightness) == 0 || ColorMath.round(saturation) == 0;