isHidden property

bool isHidden

Implementation

bool get isHidden => _getAttribute<bool>(kHidden, false);
void isHidden=(bool? x)

pass null to remove key from attributes

Implementation

set isHidden(bool? x) =>
    (x == null) ? _attributes.remove(kHidden) : _attributes[kHidden] = x;