Schedule constructor

Schedule(
  1. {int id,
  2. int routeId,
  3. int startDay,
  4. String startTime,
  5. int endDay,
  6. String endTime}
)

Implementation

Schedule(
    {this.id,
    this.routeId,
    this.startDay,
    this.startTime,
    this.endDay,
    this.endTime});