toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final currentAggregateNodeCount = this.currentAggregateNodeCount;
final maxNodeCount = this.maxNodeCount;
final minNodeCount = this.minNodeCount;
return {
'currentAggregateNodeCount': ?currentAggregateNodeCount,
'maxNodeCount': ?maxNodeCount,
'minNodeCount': ?minNodeCount,
};
}