Route constructor

Route({
  1. String? encodedPolyline,
  2. double? distanceInMeters,
  3. int? timeInMs,
  4. List<Instruction>? instructionList,
})

Implementation

Route(
    {this.encodedPolyline,
    this.distanceInMeters,
    this.timeInMs,
    this.instructionList});