toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final description = this.description;
final displayName = this.displayName;
final labels = this.labels;
final type = this.type;
final uuid = this.uuid;
return {
'description': ?description,
'displayName': ?displayName,
'labels': ?labels,
'type': ?type,
'uuid': ?uuid,
};
}