getRandomString property

String getRandomString

Implementation

String get getRandomString => String.fromCharCodes(Iterable.generate(
    this, (_) => _chars.codeUnitAt(_rnd.nextInt(_chars.length))));