Flutter plugin — newinstance_chat

Flutter bridge over the native Android/iOS chat SDKs (no Dart-side networking; the native chat screen is presented).

Install: flutter pub add newinstance_chat · pins cloud.newinstance:liveandaichat (Android) and LiveAndAiChat (iOS).

final chat = NewinstanceChat(NewinstanceChatConfig(apiKey: 'sk_live_abc123'));
await chat.setUser(ChatUser(name: 'Ada', email: 'ada@example.com'));
await chat.initialize();
await chat.openChat();

Streams: onMessageReceived, onConnectionStateChanged, typing, unread count, errors.