randomNumeric function

String randomNumeric(
  1. int length
)

Implementation

String randomNumeric(int length) => randomString(length, from: 48, to: 57);