isWhite property

  1. @override
bool isWhite
override

Returns true if this color is pure white.

Implementation

@override
bool get isWhite =>
    ColorMath.round(saturation) == 0 && ColorMath.round(intensity) == 100;