odinNextInt method
Implementation
int odinNextInt(int maxValue,{bool isSecure = false,int? seed,int minValue=0}){
var rnd = OdinRandomUtils.createRandom(isSecure:isSecure,seed: seed);
return minValue + rnd.nextInt(maxValue);
}
int odinNextInt(int maxValue,{bool isSecure = false,int? seed,int minValue=0}){
var rnd = OdinRandomUtils.createRandom(isSecure:isSecure,seed: seed);
return minValue + rnd.nextInt(maxValue);
}