是否为数字字符串
static bool isNumeric(String? s) { if (s == null) return false; return double.tryParse(s) != null; }