fromJson static method

DocumentReaderAuthenticityElement? fromJson(
  1. dynamic jsonObject
)

Implementation

static DocumentReaderAuthenticityElement? fromJson(jsonObject) {
  if (jsonObject == null) return null;
  var result = new DocumentReaderAuthenticityElement();

  result.status = jsonObject["status"];
  result.elementType = jsonObject["elementType"];
  result.elementDiagnose = jsonObject["elementDiagnose"];
  result.elementTypeName = jsonObject["elementTypeName"];
  result.elementDiagnoseName = jsonObject["elementDiagnoseName"];

  return result;
}