seekAnimations method

Future<void> seekAnimations(
  1. List<String> animations,
  2. num currentTime
)

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,
  });
}