attachments property

List<AttachmentProperty> attachments
inherited

Retrieves the attachments

Implementation

List<AttachmentProperty> get attachments =>
    getProperties<AttachmentProperty>(AttachmentProperty.propertyName)
        .toList();
void attachments=(List<AttachmentProperty> value)
inherited

Sets the attachments

Implementation

set attachments(List<AttachmentProperty> value) =>
    setOrRemoveProperties(AttachmentProperty.propertyName, value);