StretchyOpNode constructor

StretchyOpNode({
  1. required EquationRowNode? above,
  2. required EquationRowNode? below,
  3. required String symbol,
})

Implementation

StretchyOpNode({
  required this.above,
  required this.below,
  required this.symbol,
}) : assert(above != null || below != null);