void text(String text, {bool center = false}) { if (center) { _buf.writeln('[CENTER] $text'); } else { _buf.writeln(text); } }