at_client 2.0.3
at_client: ^2.0.3 copied to clipboard
at_client is the Client SDK which provides the essential methods for building an app using the @protocol.
example/main.dart
import 'dart:async';
import 'package:at_client/at_client.dart';
Future<void> main(List<String> arguments) async {
var preference = AtClientPreference();
//creating client for alice
// buzz is the namespace
await AtClientImpl.createClient('@alice', 'buzz', preference);
var atClient = await (AtClientImpl.getClient('@alice'));
print(await atClient?.getKeys());
}