ProgressHttpEvent constructor

ProgressHttpEvent({
  1. required String id,
  2. required int downloaded,
  3. required int total,
})

Implementation

ProgressHttpEvent({
  required super.id,
  required this.downloaded,
  required this.total,
});