hasAttachments method

bool hasAttachments()

Checks if this message has parts with a Content-Disposition: attachment header.

Implementation

bool hasAttachments() {
  return hasContent(ContentDisposition.attachment);
}