MutateDeployedIndexResponse.fromJson constructor

MutateDeployedIndexResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory MutateDeployedIndexResponse.fromJson(Map<String, dynamic> json) {
  return MutateDeployedIndexResponse(
    deployedIndex: decode(json['deployedIndex'], DeployedIndex.fromJson),
  );
}