toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
    json[r'total_user_count'] = this.totalUserCount;
    json[r'completed_count'] = this.completedCount;
    json[r'completed_percent'] = this.completedPercent;
    json[r'overtime'] = this.overtime;
  return json;
}