copyWith method

OverNode copyWith({
  1. EquationRowNode? base,
  2. EquationRowNode? above,
  3. bool? stackRel,
})

Implementation

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