static String numeric(int length) { const numbers = '0123456789'; final rand = math.Random(); return List.generate(length, (_) => numbers[rand.nextInt(numbers.length)]).join(''); }