isPublic property

bool isPublic

Implementation

bool get isPublic => _getAttribute<bool>(kPublic, false);
void isPublic=(bool? x)

True if Public Access has been enabled.

pass null to remove key from attributes

Implementation

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