removeFirstAndLastAny method
Continuously removes from the beginning & the end of the String, any match in patterns.
Implementation
String removeFirstAndLastAny(Iterable<String?> patterns) => removeFirstAny(patterns).removeLastAny(patterns);
Continuously removes from the beginning & the end of the String, any match in patterns.
String removeFirstAndLastAny(Iterable<String?> patterns) => removeFirstAny(patterns).removeLastAny(patterns);