Fast Forward
Toggles playing the playback faster than normal speed.
Syntax
store.dispatch({ type: "SET_PLAYER_FAST_FORWARD", payload: fastForward });
Parameters
fastForward
A boolean indicating whether the player should play faster.
Examples
Disables fast-forward mode.
store.dispatch({
type: "SET_PLAYER_FAST_FORWARD",
payload: false
});