copyWith method
Implementation
OverNode copyWith({
  EquationRowNode? base,
  EquationRowNode? above,
  bool? stackRel,
}) =>
    OverNode(
      base: base ?? this.base,
      above: above ?? this.above,
      stackRel: stackRel ?? this.stackRel,
    );