fromJson static method
Implementation
@visibleForTesting
static InitConfig? fromJson(jsonObject) {
if (jsonObject == null) return null;
return InitConfig(
_dataFromBase64(jsonObject["license"])!,
licenseUpdate: jsonObject["licenseUpdate"],
);
}