1
0
Fork 0
mirror of synced 2024-09-04 03:42:32 +12:00
appwrite/app/sdks/client-flutter/docs/examples/avatars/get-initials.md

16 lines
355 B
Markdown
Raw Normal View History

2020-06-17 22:12:45 +12:00
import 'package:appwrite/appwrite.dart';
void main() { // Init SDK
Client client = Client();
Avatars avatars = Avatars(client);
client
.setEndpoint('https://[HOSTNAME_OR_IP]/v1') // Your API Endpoint
.setProject('5df5acd0d48c2') // Your project ID
;
String result = avatars.getInitials(
);
print(result); // Resource URL string
}