Files
2026-05-18 12:33:40 +00:00

318 B

import 'package:appwrite/appwrite.dart';

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

Presences presences = Presences(client);

await presences.delete(
    presenceId: '<PRESENCE_ID>',
);