build method

  1. @override
String build()
override

Implementation

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