CompleteHttpEvent.fromRawEvent constructor

CompleteHttpEvent.fromRawEvent({
  1. required Map<String, dynamic> e,
})

Implementation

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