toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'object'] = this.object;
json[r'id'] = this.id;
json[r'name'] = this.name;
json[r'description'] = this.description;
json[r'slug'] = this.slug;
json[r'avatar_url'] = this.avatarUrl;
return json;
}