assigneeId property

String assigneeId

Implementation

String get assigneeId => _getAttribute<String>(kAssigneeId, '');
void assigneeId=(String? x)

pass null to remove key from attributes

Implementation

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