toJsonLd method
Serialize SchemaSeat to JSON-LD
Implementation
@override
Map<String, dynamic> toJsonLd() => removeEmpty({
...super.toJsonLd(),
'@type': 'Seat',
'seatNumber': convertToJsonLd(seatNumber, [String]),
'seatRow': convertToJsonLd(seatRow, [String]),
'seatSection': convertToJsonLd(seatSection, [String]),
'seatingType':
convertToJsonLd(seatingType, [SchemaQualitativeValue, String]),
});