toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final connectedProjects = this.connectedProjects;
final ipCidrRange = this.ipCidrRange;
final machineType = this.machineType;
final maxInstances = this.maxInstances;
final maxThroughput = this.maxThroughput;
final minInstances = this.minInstances;
final minThroughput = this.minThroughput;
final name = this.name;
final network = this.network;
final state = this.state;
final subnet = this.subnet;
return {
'connectedProjects': ?connectedProjects,
'ipCidrRange': ?ipCidrRange,
'machineType': ?machineType,
'maxInstances': ?maxInstances,
'maxThroughput': ?maxThroughput,
'minInstances': ?minInstances,
'minThroughput': ?minThroughput,
'name': ?name,
'network': ?network,
'state': ?state,
'subnet': ?subnet,
};
}