simulationMinSpeedMultiplier property

double get simulationMinSpeedMultiplier

Minimum simulation speed multiplier.

Returns the lower bound for the speedMultiplier parameter in startSimulation. Values below this limit will be clamped to this minimum. Use this to provide UI constraints for simulation speed controls.

Returns

  • (double) Minimum allowed speed multiplier for simulation.

See also:

Implementation

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