isOrgCustomIdUrl function

bool isOrgCustomIdUrl(
  1. String url
)

Identify URLs that point to a custom ID (starting with '#').

Note that "custom IDs" are distinct from "IDs"; see isOrgIdUrl.

Implementation

bool isOrgCustomIdUrl(String url) => url.startsWith('#');