```dart import 'package:appwrite/appwrite.dart'; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID Teams teams = Teams(client); Team result = await teams.create( teamId: '', name: '', roles: [], // optional ); ```