isBefore method

bool isBefore(
  1. Snowflake s
)

Checks if given Snowflake s is created before this instance

Implementation

bool isBefore(Snowflake s) => timestamp.isBefore(s.timestamp);