setStartTime method
Set the start time of the playback, in seconds.
Implementation
Future<void> setStartTime(double startTime) async {
if (_isNeedDisposed) return;
await _initPlayer.future;
await _mc!.invoke<void>('setStartTime', {'value': startTime});
}