getGid method
获取卡片短剧 GID
Implementation
Future<String?> getGid() async {
_ensureReady();
try {
final result = await PangrowthContent.getDramaCardGid(_cardId!);
return result;
} catch (e) {
debugPrint('DramaCardController: 获取GID失败 - $e');
return null;
}
}