QueryEncryptedSeedRequest.deserialize constructor

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

Implementation

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