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