supportsLibrary method

bool supportsLibrary(
  1. String library
)

Returns whether or not library is supported on this platform.

The library is path portion of a dart: import (should not include the scheme).

Implementation

bool supportsLibrary(String library) => _supportedLibraries.contains(library);