RubyElement constructor

RubyElement({
  1. required Element element,
  2. required List<StyledElement> children,
  3. String name = "ruby",
})

Implementation

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