QueryEncryptedSeedResponse.deserialize constructor

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

Implementation

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