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