MimeContent.withContent constructor

MimeContent.withContent(
  1. String characterSet,
  2. Uint8List content
)
Initializes a new instance of the The character set of the content. The content.

Implementation

MimeContent.withContent(String characterSet, Uint8List content) {
  this.CharacterSet = characterSet;
  this.Content = content;
}