StyleRule.supports constructor
Renders a @supports css rule.
The @supports CSS at-rule lets you specify CSS declarations that depend on a browser's support for CSS
features. Using this at-rule is commonly called a feature query. The rule must be placed at the top level of
your code or nested inside any other conditional group at-rule.
Implementation
const factory StyleRule.supports({required String condition, required List<StyleRule> styles}) = SupportsStyleRule;