removeFirst: removes the first occurrence of a substring
String removeFirst(String subString) => this?.replaceFirst(subString, "") ?? "";