StyleId constructor

const StyleId({
  1. required String name,
  2. StyleCSS? style,
  3. Map<int, StyleCSS>? width,
  4. Map<String, StyleCSS>? theme,
  5. StyleElement? child,
  6. List<StyleElement>? children,
  7. String? combinator,
})

Implementation

const StyleId({
  required String name,
  StyleCSS? style,
  Map<int, StyleCSS>? width,
  Map<String, StyleCSS>? theme,
  StyleElement? child,
  List<StyleElement>? children,
  String? combinator,
}) : super(
       name: name,
       style: style,
       width: width,
       theme: theme,
       child: child,
       children: children,
       combinator: combinator,
     );