seekTo method
Sets the video position to a Duration from the start.
Implementation
@override
Future<void> seekTo(int textureId, Duration position) {
return _api.seekTo(PositionMessage(
textureId: textureId,
position: position.inMilliseconds,
));
}