toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'username'] = this.username;
json[r'total_tokens'] = this.totalTokens;
json[r'number_of_questions'] = this.numberOfQuestions;
return json;
}