GetDigestResponse.fromJson constructor
Implementation
factory GetDigestResponse.fromJson(Map<String, dynamic> json) {
return GetDigestResponse(
digest: _s.decodeUint8List(json['Digest']! as String),
digestTipAddress: ValueHolder.fromJson(
json['DigestTipAddress'] as Map<String, dynamic>),
);
}