fromJson static method
Allows you to deserialize object.
Implementation
static AuthenticityPropertiesParams fromJson(jsonObject) {
if (jsonObject == null) return AuthenticityPropertiesParams();
var result = AuthenticityPropertiesParams();
result.testSetters = {};
result.checkHoldersSignature = jsonObject["checkHoldersSignature"];
return result;
}