remove: removes all occurrences of a substring
String removeAll(String subString) => this?.replace(subString, "") ?? "";