isBefore method

bool isBefore(
  1. Snowflake other
)

Return true if this snowflake has a timestamp before other's timestamp.

Implementation

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