build method
override
Implementation
@override
String build() {
final thisCaption = caption;
return "<table$modifiers>\n"
"${thisCaption == null ? "" : "${thisCaption.build()}\n"}"
"${head.build()}\n"
"${body.build()}\n"
"</table>";
}