toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
    json[r'username'] = this.username;
    json[r'full_name'] = this.fullName;
    json[r'email'] = this.email;
    json[r'assessments'] = this.assessments;
    json[r'time_spent'] = this.timeSpent;
  return json;
}