mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
311 B
311 B
import 'package:appwrite/appwrite.dart';
// Init SDK Client client = Client(); Account account = Account(client);
client .setProject('5df5acd0d48c2') // Your project ID ;
Future result = account.delete();
result .then((response) { print(response); }).catchError((error) { print(error); });