FractionNode constructor

FractionNode(
  1. LatexNode numerator,
  2. LatexNode denominator, {
  3. FractionStyle style = FractionStyle.normal,
  4. SourceRange? sourceRange,
})

Implementation

FractionNode(
  this.numerator,
  this.denominator, {
  this.style = FractionStyle.normal,
  this.sourceRange,
});