RubyElement constructor

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

Implementation

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