RubyElement constructor
RubyElement({
- required Element element,
- required List<
StyledElement> children, - String name = "ruby",
Implementation
RubyElement({
required this.element,
required List<StyledElement> children,
String name = "ruby",
}) : super(
name: name,
alignment: PlaceholderAlignment.middle,
style: CSS3(),
elementId: element.id,
children: children);