0 purchases
dart id
Dart ID #
this is a fast way to create ids with data inside them about when they are created
How to use #
// all these parameters are optional
String id = DartID(
idLength: 20,
allowCapitalLetters: true,
allowNumbers: true,
allowSmallLetters: true,
allowSymbols: false,
swapParts: true,
).generate();
print(id);
DateTime createdAt = DartID().parseId(id);
print(createdAt);
copied to clipboard
As easy as that #
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.