fromJson static method
Implementation
static Application? fromJson(jsonObject) {
if (jsonObject == null) return null;
var result = new Application();
result.type = jsonObject["type"];
result.status = jsonObject["status"];
result.applicationID = jsonObject["applicationID"];
result.dataHashAlgorithm = jsonObject["dataHashAlgorithm"];
result.unicodeVersion = jsonObject["unicodeVersion"];
result.version = jsonObject["version"];
if (jsonObject["files"] != null)
for (var item in jsonObject["files"])
result.files.add(File.fromJson(item));
return result;
}