connectClaudeNative static method

Future<void> connectClaudeNative()

Connect to Claude natively (consent -> login -> scrape conversations)

Implementation

static Future<void> connectClaudeNative() async {
  try {
    await platform.invokeMethod('connectClaudeNative');
    print('✅ [CLAUDE-SERVICE] Claude connector opened');
  } on PlatformException catch (e) {
    print("❌ [CLAUDE-SERVICE] Failed to connect Claude: '${e.message}'");
    rethrow;
  }
}