QueryGetSignatureThresholdResponse.deserialize constructor
Implementation
factory QueryGetSignatureThresholdResponse.deserialize(List<int> bytes) {
final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
return QueryGetSignatureThresholdResponse(
amount: decode
.messageTo<circle_cctp_v1_signature_threshold.SignatureThreshold?>(
1,
(b) => circle_cctp_v1_signature_threshold
.SignatureThreshold.deserialize(b),
),
);
}