tempoid 0.4.0
tempoid: ^0.4.0 copied to clipboard
A library to generate URL-friendly, unique, and short IDs that are sortable by time. Inspired by nanoid and UUIDv7.
import 'package:tempoid/tempoid.dart';
void main() {
for (int i = 0; i < 10; i++) {
final id = TempoId.generate();
print('ID: $id');
}
}