VoterConstitutionalCommitteeHotKeyHash.fromJson constructor
Implementation
factory VoterConstitutionalCommitteeHotKeyHash.fromJson(
Map<String, dynamic> json) {
VoterType.fromJson(json.keys.firstOrNull,
validate: VoterType.constitutionalCommitteeHotKeyHash);
return VoterConstitutionalCommitteeHotKeyHash(CredentialKey(
BytesUtils.fromHexString(
json["constitutional_committee_hot_key_hash"])));
}