toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final clusters = this.clusters;
final kind = this.kind;
final totalClusters = this.totalClusters;
return {
'clusters': ?clusters,
'kind': ?kind,
'totalClusters': ?totalClusters,
};
}