TextMimeData constructor

TextMimeData(
  1. String text,
  2. bool containsHeader
)

Creates a new text based mime data with the specifid text and the containsHeader information.

Implementation

TextMimeData(this.text, bool containsHeader) : super(containsHeader) {
  _size = text.length;
}