String randomString(int length, {int from = 33, int to = 126}) { return String.fromCharCodes( List.generate(length, (index) => randomBetween(from, to))); }