isBefore method

bool isBefore(
  1. Snowflake s
)

Checks if given Snowflake s is created before this instance

Implementation

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