copyWith method
Implementation
ReplaceAllOption copyWith({
ID? id,
String? from,
String? replace,
}) {
return ReplaceAllOption(
id: id ?? this.id,
from: from ?? this.from,
replace: replace ?? this.replace,
);
}
ReplaceAllOption copyWith({
ID? id,
String? from,
String? replace,
}) {
return ReplaceAllOption(
id: id ?? this.id,
from: from ?? this.from,
replace: replace ?? this.replace,
);
}