hooks_easy 0.0.1
hooks_easy: ^0.0.1 copied to clipboard
Test your webhook APIs and events in Flutter
HooksEasy #
A Flutter package to send data to Webhook
Getting started #
- Create New Webhook API
- Go to https://hookseasy.com/
- Create new API
- Copy your url
- Create new Webhook object
- Setup your url
const url = '';
final webhook = HooksEasy(url: url);
- Send your data
final response = await webhook.send(
data: {'message': 'Hello, world!'},
);