SchemaTrip constructor

SchemaTrip({
  1. String? arrivalTime,
  2. String? departureTime,
  3. dynamic itinerary,
  4. dynamic offers,
  5. SchemaTrip? partOfTrip,
  6. dynamic provider,
  7. SchemaTrip? subTrip,
  8. SchemaPlace? tripOrigin,
  9. String? additionalType,
  10. String? alternateName,
  11. dynamic description,
  12. String? disambiguatingDescription,
  13. dynamic identifier,
  14. dynamic image,
  15. dynamic mainEntityOfPage,
  16. String? name,
  17. SchemaAction? potentialAction,
  18. String? sameAs,
  19. dynamic subjectOf,
  20. String? url,
})

Create a new instance of SchemaTrip

Implementation

SchemaTrip({
  this.arrivalTime,
  this.departureTime,
  this.itinerary,
  this.offers,
  this.partOfTrip,
  this.provider,
  this.subTrip,
  this.tripOrigin,
  this.additionalType,
  this.alternateName,
  this.description,
  this.disambiguatingDescription,
  this.identifier,
  this.image,
  this.mainEntityOfPage,
  this.name,
  this.potentialAction,
  this.sameAs,
  this.subjectOf,
  this.url,
});