equals method

bool equals(
  1. Object? o
)

Implementation

bool equals(Object? o) {
  if (identical(this, o)) {
    return true;
  }
  if (o == null || o is! GeigerUrl) {
    return false;
  }
  GeigerUrl geigerUrl = o;
  return (protocol == geigerUrl.protocol &&
          _pluginId == geigerUrl._pluginId) &&
      path == geigerUrl.path;
}