isZero property

bool get isZero

Whether this style has no attributes or colors set.

Implementation

bool get isZero =>
    fg == null &&
    bg == null &&
    underlineColor == null &&
    underline == UnderlineStyle.none &&
    attrs == 0;