group property

String group

Implementation

String get group => _getAttribute<String>(kGroup, '');
void group=(String? x)

Possible values: No Access, Viewer, Editor, or Manager

pass null to remove key from attributes

Implementation

set group(String? x) =>
    (x == null) ? _attributes.remove(kGroup) : _attributes[kGroup] = x;