chronocall_dart

Creator: coderz1093

Last updated:

0 purchases

chronocall_dart Image
chronocall_dart Images

Languages

Categories

Add to Cart

Description:

chronocall dart

ChronoCall #
ChronoCall is a service that let's you schedule api calls in the future.
This package will let you trigger a ChronoCall "template". That's just a fancy word to say a preconfigured api call.
Let's say you want to call an api to send a notification in the future.
Go to https://chronocall.app and sign up. Create a template with the endpoint you want to call.
Optionally add your required headers like Authorization...
Now in your Flutter app, you can trigger this template at a certain time in one line of code with this package.
Usage #
final scheduledCall = await ChronoCall.schedule(
'Your Public Key',
// Let's schedule the call in 5 minutes for example
DateTime.now().add(
Duration(minutes: 5),
),
// Optionally pass some data
data: {
'title': 'hello world',
},
);

copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.