TextMimeData constructor
Creates a new text based mime data
with the specified text and the containsHeader information.
Implementation
TextMimeData(this.text, {required bool containsHeader})
: super(containsHeader: containsHeader) {
_size = text.length;
}