String toTitle([String def = ""]) { if (this == null) return def; return tokenize(splitAll: true).map((_) => _.capitalize()).join(" "); }