trimAll: removes all spaces from a string
String substring(int startIndex, [int? endIndex]) { return this?.substring(startIndex, endIndex) ?? ""; }