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