matchMedia method

MediaQueryList matchMedia(
  1. String query
)

The Window interface's matchMedia() method returns a new MediaQueryList object that can then be used to determine if the document matches the media query string, as well as to monitor the document to detect when it matches (or stops matching) that media query.

Implementation

external MediaQueryList matchMedia(String query);