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