eq method
Implementation
bool eq(RouteQueueEntry? other) {
if (other == null) return false;
if (identical(this, other)) return true;
return path == other.path && pageKey == other.pageKey;
}
bool eq(RouteQueueEntry? other) {
if (other == null) return false;
if (identical(this, other)) return true;
return path == other.path && pageKey == other.pageKey;
}