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

561 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);

AttributeLine result = await databases.updateLineAttribute( databaseId: '<DATABASE_ID>', collectionId: '<COLLECTION_ID>', key: '', xrequired: false, xdefault: 1, 2], [3, 4], [5, 6, // (optional) newKey: '', // (optional) );