toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final desc = this.desc;
final metrics = this.metrics;
final name = this.name;
final nodes = this.nodes;
final sparkPlanGraphClusterId = this.sparkPlanGraphClusterId;
return {
'desc': ?desc,
'metrics': ?metrics,
'name': ?name,
'nodes': ?nodes,
'sparkPlanGraphClusterId': ?sparkPlanGraphClusterId,
};
}