ProgressEntity.fromJson constructor

ProgressEntity.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ProgressEntity.fromJson(Map<String, dynamic> json) =>
    ProgressEntity(json['done'], json['total']);