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