toHtml method

  1. @override
String toHtml()
override

Render to HTML (for emails, web)

Implementation

@override
String toHtml() {
  final rowStyle = _buildRowStyle();
  final columnsHtml = _buildColumnsHtml();

  return '''
<div style="$rowStyle">
$columnsHtml
</div>
''';
}