eq method

bool eq(
  1. RouteQueueEntry? other
)

Implementation

bool eq(RouteQueueEntry? other) {
  if (other == null) return false;
  if (identical(this, other)) return true;

  return path == other.path && pageKey == other.pageKey;
}