mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 00:49:02 +00:00
404 B
404 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.updateMembershipStatus( teamId: '<TEAM_ID>', membershipId: '<MEMBERSHIP_ID>', userId: '<USER_ID>', secret: '', );