fromJson static method
Implementation
@visibleForTesting
static InitConfig? fromJson(jsonObject) {
if (jsonObject == null) return null;
var result = new InitConfig(base64Decode(jsonObject["license"]));
if (jsonObject["customDb"] != null)
result.customDb = base64Decode(jsonObject["customDb"]);
result.delayedNNLoad = jsonObject["delayedNNLoad"];
result.licenseUpdate = jsonObject["licenseUpdate"];
result.blackList = jsonObject["blackList"];
result.databasePath = jsonObject["databasePath"];
return result;
}