ServerErrorException.withHTTPInfo constructor
ServerErrorException.withHTTPInfo(
- int? status,
- HttpHeaders headers
Implementation
ServerErrorException.withHTTPInfo(this.status, io.HttpHeaders headers) {
this.headers = {};
headers.forEach((name, values) {
this.headers![name] = values;
});
}