toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final childClusters = this.childClusters;
  final childNodes = this.childNodes;
  final name = this.name;
  final rddClusterId = this.rddClusterId;
  return {
    'childClusters': ?childClusters,
    'childNodes': ?childNodes,
    'name': ?name,
    'rddClusterId': ?rddClusterId,
  };
}