seq static method
Implementation
static String seq(int n) {
_ensureInit();
final sb = StringBuffer();
for (var i = 0; i < n; i++) {
final idx = _rnd.nextInt(_allSeq.length);
sb.writeCharCode(_allSeq[idx]);
}
return sb.toString();
}