Request constructor
Request(})
Implementation
Request(
this._fetchApi,
this.frame,
this.interceptionId,
this.event, {
required this.redirectChain,
required bool? allowInterception,
}) : allowInterception = allowInterception ?? false {
for (var header in event.request.headers.value.keys) {
_headers[header] = event.request.headers.value[header] as String;
}
}