SymbolNode constructor

SymbolNode({
  1. required String symbol,
  2. bool variantForm = false,
  3. AtomType? overrideAtomType,
  4. FontOptions? overrideFont,
  5. Mode mode = Mode.math,
})

Implementation

SymbolNode({
  required this.symbol,
  this.variantForm = false,
  this.overrideAtomType,
  this.overrideFont,
  this.mode = Mode.math,
}) : assert(symbol.isNotEmpty);