pause method
暂停卡片视频
调用 SDK 的 pauseDramaCard 方法,原生层会调用卡片的 pause 方法。
Implementation
Future<void> pause() async {
_ensureReady();
try {
final result = await PangrowthContent.pauseDramaCard(_cardId!);
if (result) {
debugPrint('DramaCardController: 卡片已暂停 - $_cardId');
}
} catch (e) {
debugPrint('DramaCardController: 暂停卡片失败 - $e');
rethrow;
}
}