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',
},
);
Libraries
- chronocall_dart
- Support for doing something awesome.