getAttachmentsForContext method

Iterable<Attachment> getAttachmentsForContext([
  1. String? context
])

Implementation

Iterable<Attachment> getAttachmentsForContext([
  String? context,
]) {
  return _attachments.where((attachment) => attachment.context == context);
}