uniqId static method

String uniqId({
  1. int length = 11,
  2. GrockUniqIdType type = GrockUniqIdType.numbers,
})

Grock.uniqId(length: 11).printer; generate uniq id Response => dart 34576890876

Implementation

static String uniqId(
        {int length = 11, GrockUniqIdType type = GrockUniqIdType.numbers}) =>
    GrockUniqIdServices.generate(
        length: length, type: GrockUniqIdType.numbers);