toJson method

Map<String, dynamic> toJson()

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,
  };
}