isAfter method

bool isAfter(
  1. Snowflake s
)

Checks if given Snowflake s is created after this instance

Implementation

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