Generate a random integer between min and max (inclusive).
min
max
int randomInt(int min, int max) => min + _random.nextInt(max - min + 1);