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