copyWith method
Implementation
RegExpReplace copyWith({
final RegExp? from,
final String Function(Match match)? replace,
}) {
return RegExpReplace(
from: from ?? this.from,
replace: replace ?? this.replace,
);
}
RegExpReplace copyWith({
final RegExp? from,
final String Function(Match match)? replace,
}) {
return RegExpReplace(
from: from ?? this.from,
replace: replace ?? this.replace,
);
}