ChunkDatas constructor

ChunkDatas({
  1. int? id,
  2. double? distance,
  3. double? duration,
  4. List<LatLng>? geometry,
  5. int? bearingAfter,
  6. int? bearingBefore,
  7. String? name,
  8. String? instruction,
})

Implementation

ChunkDatas(
    {this.id,
    this.distance,
    this.duration,
    this.geometry,
    this.bearingAfter,
    this.bearingBefore,
    this.name,
    this.instruction});