traveledTimeDistance property
      
      TimeDistance
      get
      traveledTimeDistance
      
    
    
Get the traveled distance in meters and the traveled time in seconds.
Returns
- TimeDistance object containing the traveled time and distance.
Implementation
TimeDistance get traveledTimeDistance {
  final OperationResult resultString = objectMethod(
    pointerId,
    'RouteInstructionBase',
    'getTraveledTimeDistance',
  );
  return TimeDistance.fromJson(resultString['result']);
}