getRandomBatchId static method

String getRandomBatchId()

Implementation

static  String getRandomBatchId() => String.fromCharCodes(Iterable.generate(
      12,
          (_) =>
              randomChar.codeUnitAt(randomNumberRef.nextInt(randomChar.length))));