VroomVehicleBreak constructor

const VroomVehicleBreak({
  1. required int id,
  2. List<List<int>>? timeWindows,
  3. int service = 0,
  4. String? description,
})

Implementation

const VroomVehicleBreak({
  required this.id,
  this.timeWindows,
  this.service = 0,
  this.description,
});