import 'package:dart_appwrite/dart_appwrite.dart'; Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key Messaging messaging = Messaging(client); Message result = await messaging.updateSMS( messageId: '', topics: [], // (optional) users: [], // (optional) targets: [], // (optional) content: '', // (optional) draft: false, // (optional) scheduledAt: '', // (optional) );