mirror of
https://github.com/appwrite/appwrite
synced 2026-05-22 08:28:42 +00:00
355 B
355 B
import 'package:appwrite/appwrite.dart';
Client client = Client() .setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint .setProject('<YOUR_PROJECT_ID>'); // Your project ID
Teams teams = Teams(client);
Membership result = await teams.updateMembership( teamId: '<TEAM_ID>', membershipId: '<MEMBERSHIP_ID>', roles: [], );