speedMultiplier property

double get speedMultiplier

The current playback speed multiplier.

Relevant for route-based data sources. The multiplier is applied to the playback timeline (for example, 2.0 plays at double speed). The value must be within the range [minSpeedMultiplier, maxSpeedMultiplier].

Returns

The current speed multiplier.

See also:

Implementation

double get speedMultiplier {
  final OperationResult resultString = objectMethod(
    pointerId,
    'PlaybackContainer',
    'getSpeedMultiplier',
  );
  return resultString['result'];
}