toHtml method
Render to HTML (for emails, web)
Implementation
@override
String toHtml() {
final containerStyle = _buildContainerStyle();
final columnsHtml = _buildColumnsHtml();
return '''
<div style="$containerStyle">
$columnsHtml
</div>
''';
}