group property
String
get
group
Implementation
String get group => _getAttribute<String>(kGroup, '');
set
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;