ULID.fromBytes constructor

ULID.fromBytes(
  1. Uint8List data
)

Generate a ULID from given bytes. data must be 16 bytes in length.

Implementation

factory ULID.fromBytes(Uint8List data) => DefaultULID.factory.fromBytes(data);