fromJson static method
Implementation
static DocumentReaderGraphicField? fromJson(jsonObject) {
if (jsonObject == null) return null;
var result = new DocumentReaderGraphicField();
result.sourceType = jsonObject["sourceType"];
result.fieldType = jsonObject["fieldType"];
result.light = jsonObject["light"];
result.pageIndex = jsonObject["pageIndex"];
result.originalPageIndex = jsonObject["originalPageIndex"];
result.fieldName = jsonObject["fieldName"];
result.lightName = jsonObject["lightName"];
result.value = jsonObject["value"];
result.fieldRect = DocReaderFieldRect.fromJson(jsonObject["fieldRect"]);
return result;
}