copyWith method

EquationRowNode copyWith({
  1. AtomType? overrideType,
  2. List<GreenNode>? children,
})

Utility method.

Implementation

EquationRowNode copyWith({
  AtomType? overrideType,
  List<GreenNode>? children,
}) =>
    EquationRowNode(
      overrideType: overrideType ?? this.overrideType,
      children: children ?? this.children,
    );