toJson method

Map<String, dynamic> toJson()

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