Initial state on toggle

Hi there,

I have my lottie interactivity set on toggle click. That works like a charm.
I just want to change the initial state of my animation from start to end.

this.$refs.lottie.addEventListener('load', function() {

	var lottie = create({
		mode: 'cursor',
		player: '#lottie',
		actions: [
			{
				type: "toggle",
			},
		],
	});

})

How can I achieve that ?