QueryEncryptedSeedRequest.fromJson constructor
Implementation
factory QueryEncryptedSeedRequest.fromJson(Map<String, dynamic> json) {
return QueryEncryptedSeedRequest(
certHash: json.valueAsString<String?>('cert_hash', acceptCamelCase: true),
height: json.valueAsBigInt<BigInt?>('height', acceptCamelCase: true),
);
}