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