toJsonLd method
Serialize SchemaTransferAction to JSON-LD
Implementation
@override
Map<String, dynamic> toJsonLd() => removeEmpty({
...super.toJsonLd(),
'@type': 'TransferAction',
'fromLocation': convertToJsonLd(fromLocation, [SchemaPlace]),
'toLocation': convertToJsonLd(toLocation, [SchemaPlace]),
});