isMonochromatic property

  1. @override
bool get isMonochromatic
override

Returns true if this color is monochromatic.

Implementation

@override
bool get isMonochromatic =>
    ColorMath.round(chromaticityA) == 0 &&
    ColorMath.round(chromaticityB) == 0;