toJsonLd method
Serialize SchemaRsvpAction to JSON-LD
Implementation
@override
Map<String, dynamic> toJsonLd() => removeEmpty({
...super.toJsonLd(),
'@type': 'RsvpAction',
'additionalNumberOfGuests':
convertToJsonLd(additionalNumberOfGuests, [num]),
'comment': convertToJsonLd(comment, [SchemaComment]),
'rsvpResponse': convertToJsonLd(rsvpResponse, [SchemaRsvpResponseType]),
});