ProgressHttpEvent.fromRawEvent constructor

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

Implementation

factory ProgressHttpEvent.fromRawEvent({required Map<String, dynamic> e}) {
  return ProgressHttpEvent(
      id: e["id"], downloaded: e["downloaded"], total: e["total"]);
}