Files
sdk-for-dart/docs/examples/databases/update-point-attribute.md
2025-09-23 15:23:28 +12:00

545 B

import 'package:dart_appwrite/dart_appwrite.dart';

Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject('<YOUR_PROJECT_ID>') // Your project ID .setKey('<YOUR_API_KEY>'); // Your secret API key

Databases databases = Databases(client);

AttributePoint result = await databases.updatePointAttribute( databaseId: '<DATABASE_ID>', collectionId: '<COLLECTION_ID>', key: '', xrequired: false, xdefault: [1, 2], // (optional) newKey: '', // (optional) );