at_client 1.0.1+10
at_client: ^1.0.1+10 copied to clipboard
at_client is the Client SDK which provides the essential methods for building an app using the @protocol.
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());
}