randomId static method

String randomId({
  1. int length = 8,
  2. String sequence = az,
})

Returns random String with given length and settings.

Implementation

static String randomId({int length = 8, String sequence = az}) {
  final output = randomFromSequence(length, sequence);

  return output;
}