AnalysisSetConfigurationsResult.fromJson constructor
AnalysisSetConfigurationsResult.fromJson(})
Implementation
factory AnalysisSetConfigurationsResult.fromJson(
JsonDecoder jsonDecoder,
String jsonPath,
Object? json, {
ClientUriConverter? clientUriConverter,
}) {
json ??= {};
if (json is! Map) {
throw jsonDecoder.mismatch(
jsonPath,
"'analysis.setConfigurations result'",
json,
);
}
return AnalysisSetConfigurationsResult();
}