fromJson static method
Implementation
static DocumentReaderNotification? fromJson(jsonObject) {
if (jsonObject == null) return null;
var result = new DocumentReaderNotification();
result.code = jsonObject["code"];
result.number = jsonObject["number"];
result.value = jsonObject["value"];
return result;
}