copyWith method
Implementation
ValueNode copyWith({
String? value,
String? raw,
String? type,
Location? loc,
}) {
return ValueNode(
value ?? this.value,
raw ?? this.raw,
type: type ?? this.type,
loc: loc ?? this.loc,
);
}