fromJson static method

DocumentReaderNotification? fromJson(
  1. dynamic jsonObject
)

Implementation

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

  result.notificationCode = jsonObject["notificationCode"];
  result.dataFileType = jsonObject["dataFileType"];
  result.progress = jsonObject["progress"];

  return result;
}