toJsonLd method
Serialize SchemaBusinessAudience to JSON-LD
Implementation
@override
Map<String, dynamic> toJsonLd() => removeEmpty({
...super.toJsonLd(),
'@type': 'BusinessAudience',
'numberOfEmployees':
convertToJsonLd(numberOfEmployees, [SchemaQuantitativeValue]),
'yearlyRevenue':
convertToJsonLd(yearlyRevenue, [SchemaQuantitativeValue]),
'yearsInOperation':
convertToJsonLd(yearsInOperation, [SchemaQuantitativeValue]),
});