HttpRule constructor

HttpRule({
  1. List<HttpRule>? additionalBindings,
  2. String? body,
  3. CustomHttpPattern? custom,
  4. String? delete,
  5. String? get,
  6. String? patch,
  7. String? post,
  8. String? put,
  9. String? responseBody,
  10. String? selector,
})

Implementation

HttpRule({
  this.additionalBindings,
  this.body,
  this.custom,
  this.delete,
  this.get,
  this.patch,
  this.post,
  this.put,
  this.responseBody,
  this.selector,
});