toJson method
Converts the object to a JSON representation.
Implementation
@override
Map<String, dynamic> toJson() {
return {
'vkey': vkey.toJson(),
'signature': signature.toJson(),
'chain_code': BytesUtils.toHexString(chainCode),
'attributes': BytesUtils.toHexString(attributes)
};
}