replaceList method
Implementation
String? replaceList(List<String> from, String replace) {
String? newString = this;
if (isNullOrEmpty()) return null;
for (String _from in from) {
newString = newString!.replaceAll(_from, replace);
}
return newString;
}