pause method
暂停视频播放
适用于 TabBar 切换等场景,需要暂停视频播放时调用。
调用 SDK 的 pauseVideo 方法,原生层会调用视频 Widget 的生命周期方法。
Implementation
Future<void> pause() async {
_ensureReady();
try {
await PangrowthContent.pauseVideo(_videoId!);
debugPrint('VideoController: 视频已暂停 - $_videoId');
} catch (e) {
debugPrint('VideoController: 暂停视频失败 - $e');
rethrow;
}
}