isActive property

bool isActive

Implementation

bool get isActive => _getAttribute<bool>(kActive, false);
void isActive=(bool? x)

pass null to remove key from attributes

Implementation

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