1
0
Fork 0
mirror of synced 2024-07-19 21:35:44 +12:00
appwrite/app/sdks/client-flutter/docs/examples/avatars/get-initials.md
2020-06-17 13:12:45 +03:00

355 B

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 }