fromJson static method

AuthenticityPropertiesParams fromJson(
  1. dynamic jsonObject
)

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;
}