fromJson static method
Allows you to deserialize object.
Implementation
static PDF417Info? fromJson(jsonObject) {
if (jsonObject == null) return null;
var result = PDF417Info();
result._errorLevel = jsonObject["errorLevel"];
result._columns = jsonObject["columns"];
result._rows = jsonObject["rows"];
return result;
}