toJson method
Render to intermediate JSON (for APIs, mobile apps, etc.)
Implementation
@override
Map<String, dynamic> toJson() => {
'type': 'rich_text',
'children': children.map((child) => child.toJson()).toList(),
'align': align.name,
};