nextAsciiNumberString method

String nextAsciiNumberString(
  1. int length
)

Generates a String containing uniformly distributed and randomly generated ASCII number characters .

Number characters are all numbers from 0 to 9.

See AsciiRanges.numbers See ASCII Table

Implementation

String nextAsciiNumberString(int length) => nextAsciiString(
      length,
      ranges: const [AsciiRanges.numbers],
    );