Adds raw text to the summary buffer
text
addEOL append an EOL to the raw text
addEOL
void addRaw(String text, {bool addEOL = false}) { if (addEOL) { _buffer.writeln(text); } else { _buffer.write(text); } }