小于 a<b Checks if first string number is less than second
static bool lessThanStr(String? a, String? b) { return _safeParse(a) < _safeParse(b); }