Files
sdk-for-flutter/docs/examples/teams/delete.md
T
2024-02-27 20:33:14 +13:00

269 B

import 'package:appwrite/appwrite.dart';

Client client = Client() .setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint .setProject('5df5acd0d48c2'); // Your project ID

Teams teams = Teams(client);

await teams.delete( teamId: '<TEAM_ID>', );