StyleRule.media constructor

const StyleRule.media({
  1. required MediaQuery query,
  2. required List<StyleRule> styles,
})

Renders a @media css rule.

The @media CSS at-rule can be used to apply part of a style sheet based on the result of one or more media queries. With it, you specify a media query and a block of CSS to apply to the document if and only if the media query matches the device on which the content is being used.

Implementation

const factory StyleRule.media({required MediaQuery query, required List<StyleRule> styles}) = MediaStyleRule;