XXH3 constructor

const XXH3({
  1. int seed = 0,
  2. List<int>? secret,
})

Creates a new instance of XXH3.

Parameters:

  • seed is an optional 64-bit integer. Default: 0
  • secret is an array of bytes. The length should be at least 136.
  • If the secret is present, the seed is ignored.

Implementation

const XXH3({this.seed = 0, this.secret});