文字转int defaultValue 默认值
defaultValue
int parseInt({int defaultValue = 0}) { try { return int.parse(this); } catch (e) { return defaultValue; } }