MutateDeployedIndexResponse.fromJson constructor
MutateDeployedIndexResponse.fromJson(
- Object? j
Implementation
factory MutateDeployedIndexResponse.fromJson(Object? j) {
final json = j as Map<String, Object?>;
return MutateDeployedIndexResponse(
deployedIndex: switch (json['deployedIndex']) {
null => null,
Object $1 => DeployedIndex.fromJson($1),
},
);
}