toJson method
Render to intermediate JSON (for APIs, mobile apps, etc.)
Implementation
@override
Map<String, dynamic> toJson() => {
'head': head?.toJson() ?? {},
'headStyles': styles(),
'headScripts': scripts(),
'body': buildTemplate().toJson(),
};