seekTo method
Seek to a specific position
Implementation
@override
Future<void> seekTo(int textureId, Duration position) async {
final playerId = _textureIdToPlayerId[textureId];
final controller = _controllers[playerId];
if (controller != null) {
await controller.seekTo(position);
}
}