showManageSubscriptionsSheet method

  1. @override
Future<void> showManageSubscriptionsSheet()
override

打开订阅管理页面

Implementation

@override
Future<void> showManageSubscriptionsSheet() async {
  safeLog('📤 [MethodChannel] 调用 showManageSubscriptionsSheet');
  try {
    await methodChannel.invokeMethod('showManageSubscriptionsSheet');
    safeLog('✅ [MethodChannel] showManageSubscriptionsSheet 调用成功');
  } catch (e, stackTrace) {
    safeLog(
      '❌ [MethodChannel] showManageSubscriptionsSheet 失败: $e',
      error: e,
      stackTrace: stackTrace,
    );
    rethrow;
  }
}