echox 0.1.0+3
echox: ^0.1.0+3 copied to clipboard
Streamline Your XMPP Messaging with Lightweight Dart-Based XMPP Client
example/main.dart
import 'package:echox/echox.dart';
Future<void> main() async {
final echox = EchoX(
service: 'ws://localhost:5443/ws',
jid: JabberID(
'user',
domain: 'localhost',
resource: 'mobile',
),
password: 'somepsw',
);
echox.connect();
}