Timetable constructor

Timetable({
  1. String? departureStopId,
  2. List<TimetableRoute>? routes,
})

Implementation

Timetable({
  this.departureStopId,
  this.routes,
});