toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final targetNodeType = this.targetNodeType;
  final targetReplicaCount = this.targetReplicaCount;
  final targetShardCount = this.targetShardCount;
  return {
    'targetNodeType': ?targetNodeType,
    'targetReplicaCount': ?targetReplicaCount,
    'targetShardCount': ?targetShardCount,
  };
}