DrivingFlags constructor

const DrivingFlags({
  1. required bool blocked,
  2. required bool hasFerries,
  3. required bool hasTolls,
  4. required bool requiresAccessPass,
  5. required bool forParking,
  6. required bool futureBlocked,
  7. required bool deadJam,
  8. required bool builtOffline,
  9. required bool predicted,
  10. required bool hasRuggedRoads,
  11. required bool hasFordCrossing,
  12. required bool hasVehicleRestrictions,
  13. required bool hasUnpavedRoads,
  14. required bool hasInPoorConditionRoads,
  15. required bool hasRailwayCrossing,
  16. required bool hasCheckpoints,
  17. required bool scheduledDeparture,
  18. required bool hasNonTransactionalTolls,
})

Implementation

const DrivingFlags({
  required this.blocked,
  required this.hasFerries,
  required this.hasTolls,
  required this.requiresAccessPass,
  required this.forParking,
  required this.futureBlocked,
  required this.deadJam,
  required this.builtOffline,
  required this.predicted,
  required this.hasRuggedRoads,
  required this.hasFordCrossing,
  required this.hasVehicleRestrictions,
  required this.hasUnpavedRoads,
  required this.hasInPoorConditionRoads,
  required this.hasRailwayCrossing,
  required this.hasCheckpoints,
  required this.scheduledDeparture,
  required this.hasNonTransactionalTolls,
});