setSeed static method

void setSeed(
  1. int seed
)

Sets the seed for these. Note that this creates a new Random instance so it will reset the seed

Implementation

static void setSeed(int seed) {
  _random = Random(seed);
}