peoplePermissions property

String peoplePermissions

Implementation

String get peoplePermissions => _getAttribute<String>(kPeoplePermissions, '');
void peoplePermissions=(String? x)

pass null to remove key from attributes

Implementation

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