QueryMachineIDProofResponse.deserialize constructor

QueryMachineIDProofResponse.deserialize(
  1. List<int> bytes
)

Implementation

factory QueryMachineIDProofResponse.deserialize(List<int> bytes) {
  final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
  return QueryMachineIDProofResponse(proof: decode.getBytes<List<int>?>(1));
}