nextMonotonicULIDStrict static method

ULID? nextMonotonicULIDStrict(
  1. ULID previous, [
  2. int? timestamp
])

Generate the next monotonic ULID, or returns null if an overflow happened while incrementing the random part of the given previous ULID.

Implementation

static ULID? nextMonotonicULIDStrict(ULID previous, [int? timestamp]) =>
    DefaultULID.monotonic.nextULIDStrict(previous, timestamp);