toJsonLd method
Serialize SchemaChemicalSubstance to JSON-LD
Implementation
@override
Map<String, dynamic> toJsonLd() => removeEmpty({
...super.toJsonLd(),
'@type': 'ChemicalSubstance',
'chemicalComposition': convertToJsonLd(chemicalComposition, [String]),
'chemicalRole': convertToJsonLd(chemicalRole, [SchemaDefinedTerm]),
'potentialUse': convertToJsonLd(potentialUse, [SchemaDefinedTerm]),
});