isAfter method

bool isAfter(
  1. Snowflake other
)

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

Implementation

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