MathElement constructor

MathElement({
  1. required Element element,
  2. String? texStr,
  3. String name = "math",
})

Implementation

MathElement({
  required this.element,
  this.texStr,
  String name = "math",
}) : super(name: name, alignment: PlaceholderAlignment.middle, style: Style(display: Display.BLOCK), elementId: element.id);