isAtSameMomentAs method

bool isAtSameMomentAs(
  1. Snowflake other
)

Return true if this snowflake has a timestamp at the same time as other's timestamp.

Implementation

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