Checks if the length! of the String is less than the length of s.
String
s
String foo = 'Hello'; bool isLess = foo < 'Hi'; // returns false.
bool operator <(String s) => length < s.length;