Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 550 Bytes

File metadata and controls

17 lines (14 loc) · 550 Bytes

import 'package:appwrite/appwrite.dart';

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

Functions functions = Functions(client);

Execution result = await functions.createExecution( functionId: '<FUNCTION_ID>', body: '', // optional xasync: false, // optional path: '', // optional method: ExecutionMethod.gET, // optional headers: {}, // optional scheduledAt: '<SCHEDULED_AT>', // optional );