toJsonLd method
Serialize SchemaBlog to JSON-LD
Implementation
@override
Map<String, dynamic> toJsonLd() => removeEmpty({
...super.toJsonLd(),
'@type': 'Blog',
'blogPost': convertToJsonLd(blogPost, [SchemaBlogPosting]),
'blogPosts': convertToJsonLd(blogPosts, [SchemaBlogPosting]),
'issn': convertToJsonLd(issn, [String]),
});