AnalysisUpdateContentResult.fromJson constructor

AnalysisUpdateContentResult.fromJson(
  1. JsonDecoder jsonDecoder,
  2. String jsonPath,
  3. Object? json
)

Implementation

factory AnalysisUpdateContentResult.fromJson(
    JsonDecoder jsonDecoder, String jsonPath, Object? json) {
  json ??= {};
  if (json is Map) {
    return AnalysisUpdateContentResult();
  } else {
    throw jsonDecoder.mismatch(
        jsonPath, 'analysis.updateContent result', json);
  }
}