toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final configuredCapabilities = this.configuredCapabilities;
final createTime = this.createTime;
final labels = this.labels;
final lifecycleState = this.lifecycleState;
final name = this.name;
final parent = this.parent;
final projectId = this.projectId;
final projectNumber = this.projectNumber;
final tags = this.tags;
return {
'configuredCapabilities': ?configuredCapabilities,
'createTime': ?createTime,
'labels': ?labels,
'lifecycleState': ?lifecycleState,
'name': ?name,
'parent': ?parent,
'projectId': ?projectId,
'projectNumber': ?projectNumber,
'tags': ?tags,
};
}