get int by value string 将数字字符串转int
int getIntByValueString(String valueStr, {int defValue = 0}) { return int.tryParse(valueStr) ?? defValue; }