toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'custom'] = this.custom;
json[r'id'] = this.id;
json[r'image'] = this.image;
json[r'name'] = this.name;
json[r'roles'] = this.roles;
return json;
}