copyWith method
Generate a new ConfigEdits object from the original object.
Implementation
ConfigEdits copyWith({
bool? isText,
int? n,
double? temperature,
int? topP,
}) {
return ConfigEdits(
isText: isText ?? this.isText,
n: n ?? this.n,
temperature: temperature ?? this.temperature,
topP: topP ?? this.topP,
);
}