hooks_easy 0.0.3 copy "hooks_easy: ^0.0.3" to clipboard
hooks_easy: ^0.0.3 copied to clipboard

Test your webhook APIs and events in Flutter

example/lib/main.dart

import 'package:hooks_easy/hooks_easy.dart';

void main() async {
  const url =
      'https://ingress-playground.hookseasy.com/mrEtB9jU1FagH4Ro4IKQK0lr';
  final webhook = HooksEasy(url: url, debug: true);
  final response = await webhook.send(
    data: {'message': 'Hello, world!'},
  );
  print(response);
  final response2 = await webhook.send(
    data: {'message': 0987654321},
  );
  print(response2);
}
0
likes
135
points
31
downloads

Publisher

unverified uploader

Weekly Downloads

Test your webhook APIs and events in Flutter

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, http

More

Packages that depend on hooks_easy