HttpHook constructor

const HttpHook({
  1. required String url,
  2. Map<String, String> headers = const {},
  3. String? ifFilter,
  4. int? timeout,
  5. String? statusMessage,
  6. bool once = false,
})

Implementation

const HttpHook({
  required this.url,
  this.headers = const {},
  this.ifFilter,
  this.timeout,
  this.statusMessage,
  this.once = false,
});