toHtml method

  1. @override
String toHtml()
override

Render to HTML (for emails, web)

Implementation

@override
String toHtml() {
  final style = 'text-align: ${align.toCss()}; line-height: 1.6;';
  return '''
<div style="$style">
${children.map((span) => span.toHtml()).join()}
</div>
''';
}