at_client 3.0.5
at_client: ^3.0.5 copied to clipboard
The at_client library is the non-platform specific 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
final atClientManager = await AtClientManager.getInstance()
.setCurrentAtSign('@alice', 'buzz', preference);
print(await atClientManager.atClient.getKeys());
}