toString method
Converts the table content to a formatted string, with rows separated by newlines.
Implementation
@override
String toString() {
final StringBuffer buffer = StringBuffer();
writeLines(buffer.writeln);
return buffer.toString();
}