HttpHook constructor

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

Implementation

const HttpHook({
  required this.url,
  this.headers = const {},
  super.condition,
  super.timeoutSeconds,
  super.async_,
  super.once,
});