toHtml method
Renders the row as an HTML <div> using CSS flexbox layout.
Applies spacing, alignment, and responsive styling inline.
Implementation
@override
String toHtml() {
final containerStyle = _buildContainerStyle();
final columnsHtml = _buildColumnsHtml();
return '''
<div style="$containerStyle">
$columnsHtml
</div>
''';
}