toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final attributes = this.attributes;
final displayName = this.displayName;
final name = this.name;
final origin = this.origin;
return {
'attributes': ?attributes,
'displayName': ?displayName,
'name': ?name,
'origin': ?origin,
};
}