FLUTTER ECOSYSTEM

agilord/ulid

Ulid implementation in Dart

ulid project cover
Stars
41
Forks
9
Last push (UTC)
Sep 16, 2026
Project status
Active
Agilord, LLC GitHub avatar
GITHUB Organization

Agilord, LLC ↗

LanguagesDart

Packages published by this repository

Dependencies used

Dependency list 2 items

Original README

English project snapshot. Visit GitHub for the latest content.

Expand / collapse project README

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/

Specification: https://github.com/ulid/spec

Usage

A simple usage example:

import 'package:ulid/ulid.dart';

void main() {
  print(Ulid());
  print(Ulid().toUuid());
  print(Ulid().toCanonical());
  print(Ulid().toBase32()); // uppercase, spec-aligned format
}

Links