FLUTTER ECOSYSTEM

agilord/ulid

Ulid-Implementierung in Dart

Projektcover von ulid
Stars
41
Forks
9
Letzter Push (UTC)
16.09.2026
Projektstatus
Aktiv
Agilord, LLC GitHub avatar
GITHUB Organization

Agilord, LLC ↗

SprachenDart

Von diesem Repository veröffentlichte Pakete

Verwendete Abhängigkeiten

Abhängigkeiten 2 Einträge

Original-README

Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.

Projekt-README ein-/ausklappen

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