BootstrapWitness.fromJson constructor
Implementation
factory BootstrapWitness.fromJson(Map<String, dynamic> json) {
return BootstrapWitness(
vkey: Vkey.fromHex(json['vkey']),
signature: Ed25519Signature.fromHex(json['signature']),
chainCode: BytesUtils.fromHexString(json['chain_code']),
attributes: BytesUtils.fromHexString(json['attributes']));
}