Intersection constructor

Intersection({
  1. required List<bool> entry,
  2. required List<int> bearings,
  3. double? duration,
  4. bool? isUrban,
  5. required int adminIndex,
  6. int? out,
  7. double? weight,
  8. required int geometryIndex,
  9. required List<double> location,
  10. int? intersectionIn,
  11. double? turnDuration,
  12. double? turnWeight,
  13. List<String>? classes,
})

Implementation

Intersection({
  required this.entry,
  required this.bearings,
  this.duration,
  this.isUrban,
  required this.adminIndex,
  this.out,
  this.weight,
  required this.geometryIndex,
  required this.location,
  this.intersectionIn,
  this.turnDuration,
  this.turnWeight,
  this.classes,
});