Experimental COI client for Dart developers.
Available under the commercial friendly MPL Mozilla Public License 2.0.
A simple usage example:
import 'package:enough_coi/enough_coi.dart';
void main() async {
var client = await CoiClient.init('enough.de');
var email = '[email protected]';
var config = await client.discover(email);
if (config != null) {
var account = await client.tryLogin(email, config, password: 'secret');
if (account != null) {
var isChatMessage = true;
var recipients = ['[email protected]'];
var messageSent = await client.sendMessage(
isChatMessage, 'Hello COI world!', recipients, account);
print('message has been sent: $messageSent');
}
}
}
Add this dependency your pubspec.yaml file:
dependencies:
enough_coi: ^0.0.4
For more info visit pub.dev.
Please file feature requests and bugs at the issue tracker.