Return int value of given string
int toInt({int defaultValue = 0}) { if (this == null) return defaultValue; if (this.isDigit()) { return int.parse(this!); } else { return defaultValue; } }