fromJson static method
- dynamic jsonObject
Implementation
@visibleForTesting
static TccParams? fromJson(jsonObject) {
if (jsonObject == null) return null;
var result = new TccParams();
result.serviceUrlTA = jsonObject["serviceUrlTA"];
result.serviceUrlPA = jsonObject["serviceUrlPA"];
result.pfxCertUrl = jsonObject["pfxCertUrl"];
result.pfxPassPhrase = jsonObject["pfxPassPhrase"];
result.pfxCert = _fromBase64(jsonObject["pfxCert"]);
return result;
}