attachmentTypeIds property

String attachmentTypeIds

Implementation

String get attachmentTypeIds => _getAttribute<String>(kAttachmentTypeIds, '');
void attachmentTypeIds=(String? x)

pass null to remove key from attributes

Implementation

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