How does one get a random number within a range similar to c# Random.Next(int min, int max);
import 'dart:math'; final _random = new Random(); /** * Generates a positive random integer uniformly distributed on the range * from [min], inclusive, to [max], exclusive. */ int next(int min, int max) => min + _random.nextInt(max - min);