PlannedWorks constructor

PlannedWorks({
  1. String? id,
  2. String? description,
  3. DateTime? created,
  4. DateTime? lastUpdate,
  5. List<ValidityPeriod>? validityDates,
  6. List<Identifier>? affectedRoutes,
  7. List<StopPoint>? affectedStops,
  8. List<Identifier>? affectedModes,
  9. bool? isBlocking,
  10. bool? isWholeLine,
})

Implementation

PlannedWorks({
  this.id,
  this.description,
  this.created,
  this.lastUpdate,
  this.validityDates,
  this.affectedRoutes,
  this.affectedStops,
  this.affectedModes,
  this.isBlocking,
  this.isWholeLine,
});