SchemaPropertyValueSpecification constructor

SchemaPropertyValueSpecification({
  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. dynamic defaultValue,
  15. num? maxValue,
  16. num? minValue,
  17. bool? multipleValues,
  18. bool? readonlyValue,
  19. num? stepValue,
  20. num? valueMaxLength,
  21. num? valueMinLength,
  22. String? valueName,
  23. String? valuePattern,
  24. bool? valueRequired,
})

Create a new instance of SchemaPropertyValueSpecification

Implementation

SchemaPropertyValueSpecification({
  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.defaultValue,
  this.maxValue,
  this.minValue,
  this.multipleValues,
  this.readonlyValue,
  this.stepValue,
  this.valueMaxLength,
  this.valueMinLength,
  this.valueName,
  this.valuePattern,
  this.valueRequired,
});