simulationMaxSpeedMultiplier property

double get simulationMaxSpeedMultiplier

Maximum simulation speed multiplier.

Returns the upper bound for the speedMultiplier parameter in startSimulation. Values above this limit will be clamped to this maximum. Use this to provide UI constraints for simulation speed controls.

Returns

  • (double) Maximum allowed speed multiplier for simulation.

See also:

Implementation

static double get simulationMaxSpeedMultiplier {
  final OperationResult result = staticMethod(
    'NavigationService',
    'getSimulationMaxSpeedMultiplier',
  );
  return result['result'];
}