setStartTime method
Set the start time of the video playback, in seconds.
设置视频播放开始时间,单位 秒
Implementation
Future<void> setStartTime(double startTime) async {
if (_isNeedDisposed) return;
await _initPlayer.future;
await _vodPlayerApi.setStartTime(DoublePlayerMsg()
..value = startTime
..playerId = _playerId);
}