数字字符串转double
double kparseDouble({int digits = 0, double defValue = 0}) => double.tryParse(this ?? defValue.toString()) ?? defValue;