MediaQueryListEventInit constructor

MediaQueryListEventInit({
  1. String? media,
  2. bool? matches,
})

Implementation

factory MediaQueryListEventInit({String? media, bool? matches}) =>
    MediaQueryListEventInit._(media: media ?? '', matches: matches ?? false);