Schedule constructor

Schedule({
  1. String? name,
  2. List<KnownJourney>? knownJourneys,
  3. KnownJourney? firstJourney,
  4. KnownJourney? lastJourney,
  5. List<Period>? periods,
})

Implementation

Schedule({
  this.name,
  this.knownJourneys,
  this.firstJourney,
  this.lastJourney,
  this.periods,
});