toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final clusterId = this.clusterId;
final name = this.name;
final nodePoolId = this.nodePoolId;
final projectId = this.projectId;
final respectPdb = this.respectPdb;
final zone = this.zone;
return {
'clusterId': ?clusterId,
'name': ?name,
'nodePoolId': ?nodePoolId,
'projectId': ?projectId,
'respectPdb': ?respectPdb,
'zone': ?zone,
};
}