visible property Null safety
visible - Prints the text only when Chalk has a color level > 0. Can be useful for things that are purely cosmetic.
Implementation
Chalk get visible {
// look at color Level and print ONLY IF >0
var ck = _createStyler('', '', this);
ck._chalkVisibleModifier = true;
return ck;
}