replaceAll method
Implementation
PaywallLocalizedContent<String?> replaceAll(
Pattern from,
String replace, {
bool? all,
}) {
if (all ?? false) {
return resolveWith((value) => value?.replaceAll(from, replace));
}
return copyWith(value: value?.replaceAll(from, replace));
}