SchemaPropertyValue constructor

SchemaPropertyValue({
  1. String? additionalType,
  2. String? alternateName,
  3. dynamic description,
  4. String? disambiguatingDescription,
  5. dynamic identifier,
  6. dynamic image,
  7. dynamic mainEntityOfPage,
  8. String? name,
  9. dynamic owner,
  10. SchemaAction? potentialAction,
  11. String? sameAs,
  12. dynamic subjectOf,
  13. String? url,
  14. num? maxValue,
  15. dynamic measurementMethod,
  16. dynamic measurementTechnique,
  17. num? minValue,
  18. String? propertyID,
  19. String? unitCode,
  20. String? unitText,
  21. dynamic value,
  22. dynamic valueReference,
})

Create a new instance of SchemaPropertyValue

Implementation

SchemaPropertyValue({
  super.additionalType,
  super.alternateName,
  super.description,
  super.disambiguatingDescription,
  super.identifier,
  super.image,
  super.mainEntityOfPage,
  super.name,
  super.owner,
  super.potentialAction,
  super.sameAs,
  super.subjectOf,
  super.url,
  this.maxValue,
  this.measurementMethod,
  this.measurementTechnique,
  this.minValue,
  this.propertyID,
  this.unitCode,
  this.unitText,
  this.value,
  this.valueReference,
});