toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'username'] = this.username;
json[r'full_name'] = this.fullName;
json[r'count'] = this.count;
json[r'percentage'] = this.percentage;
return json;
}