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