isImported static method

bool isImported(
  1. String url
)

Implementation

static bool isImported(String url) {
        final html.Element  head = html.querySelector('head')!;
        return _isLoaded(head, url);
}