isOrgIdUrl function

bool isOrgIdUrl(
  1. String url
)

Identify URLs that point to IDs (starting with 'id:').

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

Implementation

bool isOrgIdUrl(String url) => url.startsWith('id:');