isShare property

bool isShare

Implementation

bool get isShare => _getAttribute<bool>(kShare, false);
void isShare=(bool? x)

pass null to remove key from attributes

Implementation

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