isImported static method

bool isImported(
  1. String url
)

Implementation

static bool isImported(String url) {
        if (kIsWeb) {
                return ImportJsLibraryWeb.isImported(url);
        } else {
                return false;
        }
}