chronocall_dart 1.0.0 copy "chronocall_dart: ^1.0.0" to clipboard
chronocall_dart: ^1.0.0 copied to clipboard

A client sdk for Chronocall

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',
    },
  );

1
likes
140
points
39
downloads

Publisher

unverified uploader

Weekly Downloads

A client sdk for Chronocall

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

chronocall_protocol, http

More

Packages that depend on chronocall_dart