转为int类型
int? toInt({int defValue = 0}) { if (this == null) { return null; } return int.tryParse(this!) ?? defValue; }