static bool isWhitespace(String s) { return s.runes .every((int rune) => String.fromCharCode(rune).trim().isEmpty); }