fromJson static method

DocumentReaderNotification? fromJson(
  1. dynamic jsonObject
)

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;
}