QueryMachineIDProofRequest.deserialize constructor
Implementation
factory QueryMachineIDProofRequest.deserialize(List<int> bytes) {
final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
return QueryMachineIDProofRequest(
height: decode.getBigInt<BigInt?>(1),
machineId: decode.getString<String?>(2),
);
}