toJsonLd method
Serialize SchemaQuestion to JSON-LD
Implementation
@override
Map<String, dynamic> toJsonLd() => removeEmpty({
...super.toJsonLd(),
'@type': 'Question',
'acceptedAnswer':
convertToJsonLd(acceptedAnswer, [SchemaAnswer, SchemaItemList]),
'answerCount': convertToJsonLd(answerCount, [int]),
'eduQuestionType': convertToJsonLd(eduQuestionType, [String]),
'suggestedAnswer':
convertToJsonLd(suggestedAnswer, [SchemaAnswer, SchemaItemList]),
});