commentPermissions property

String commentPermissions

Implementation

String get commentPermissions =>
    _getAttribute<String>(kCommentPermissions, '');
void commentPermissions=(String? x)

pass null to remove key from attributes

Implementation

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