StyleElement constructor

const StyleElement({
  1. 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 StyleElement({
  this.name,
  this.style,
  this.width,
  this.theme,
  this.child,
  this.children,
  String? combinator,
}) : combinator = combinator ?? ' ';