copyWith method
Implementation
AccentNode copyWith({
EquationRowNode? base,
String? label,
bool? isStretchy,
bool? isShifty,
}) =>
AccentNode(
base: base ?? this.base,
label: label ?? this.label,
isStretchy: isStretchy ?? this.isStretchy,
isShifty: isShifty ?? this.isShifty,
);