CompleteHttpEvent.fromRawEvent constructor
Implementation
factory CompleteHttpEvent.fromRawEvent({required Map<String, dynamic> e}) {
return CompleteHttpEvent(
id: e["id"],
statusCode: e["statusCode"],
headers: e["headers"],
outputPath: e["outputPath"],
);
}