attachments property

List<Attachment> attachments

Implementation

List<Attachment> get attachments =>
    where((a) => a.typeUrl == attachmentTypeUrl)
        .map((a) => Attachment.fromBuffer(a.value))
        .toList();