agilord / ulid

Ulid implementation in Dart

Home Page:https://pub.dartlang.org/packages/ulid

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ulid implementation in Dart

Lexicographically sortable, 128-bit identifier (UUID) with 48-bit timestamp and 80 random bits. Canonically encoded as a 26 character string, as opposed to the 36 character UUID.

Original implementation: https://github.com/alizain/ulid/

Usage

A simple usage example:

import 'package:ulid/ulid.dart';

main() {
  print(Ulid());
  print(Ulid().toUuid());
}

Links

About

Ulid implementation in Dart

https://pub.dartlang.org/packages/ulid

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Dart 100.0%