isChild property

bool isChild

Implementation

bool get isChild => _getAttribute<bool>(kChild, false);
void isChild=(bool? x)

pass null to remove key from attributes

Implementation

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