mirror of
https://github.com/appwrite/appwrite
synced 2026-05-19 15:08:43 +00:00
22 lines
478 B
Markdown
22 lines
478 B
Markdown
|
|
import 'package:appwrite/appwrite.dart';
|
||
|
|
|
||
|
|
void main() { // Init SDK
|
||
|
|
Client client = Client();
|
||
|
|
Functions functions = Functions(client);
|
||
|
|
|
||
|
|
client
|
||
|
|
.setEndpoint('https://[HOSTNAME_OR_IP]/v1') // Your API Endpoint
|
||
|
|
.setProject('5df5acd0d48c2') // Your project ID
|
||
|
|
;
|
||
|
|
Future result = functions.createExecution(
|
||
|
|
functionId: '[FUNCTION_ID]',
|
||
|
|
);
|
||
|
|
|
||
|
|
result
|
||
|
|
.then((response) {
|
||
|
|
print(response);
|
||
|
|
}).catchError((error) {
|
||
|
|
print(error.response);
|
||
|
|
});
|
||
|
|
}
|