StyleId constructor
const
StyleId({})
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,
);