SchemaSchedule constructor

SchemaSchedule({
  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 byDay,
  15. int? byMonth,
  16. int? byMonthDay,
  17. int? byMonthWeek,
  18. dynamic duration,
  19. String? endDate,
  20. String? endTime,
  21. String? exceptDate,
  22. int? repeatCount,
  23. dynamic repeatFrequency,
  24. String? scheduleTimezone,
  25. String? startDate,
  26. String? startTime,
})

Create a new instance of SchemaSchedule

Implementation

SchemaSchedule({
  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.byDay,
  this.byMonth,
  this.byMonthDay,
  this.byMonthWeek,
  this.duration,
  this.endDate,
  this.endTime,
  this.exceptDate,
  this.repeatCount,
  this.repeatFrequency,
  this.scheduleTimezone,
  this.startDate,
  this.startTime,
});