seekAnimations method
Seek a set of animations to a particular time within each animation.
animations
List of animation ids to seek.
currentTime
Set the current time of each animation.
Implementation
Future<void> seekAnimations(List<String> animations, num currentTime) async {
await _client.send('Animation.seekAnimations', {
'animations': [...animations],
'currentTime': currentTime,
});
}