mirror of
https://github.com/appwrite/appwrite
synced 2026-05-19 15:08:43 +00:00
535 B
535 B
import 'package:appwrite/appwrite.dart';
void main() { // Init SDK Client client = Client(); Teams teams = Teams(client);
client .setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint .setProject('5df5acd0d48c2') // Your project ID ; Future result = teams.createMembership( teamId: '[TEAM_ID]', email: 'email@example.com', roles: [], url: 'https://example.com', );
result .then((response) { print(response); }).catchError((error) { print(error.response); }); }