Converts the String to an integer.
integer
Example:
print("123".toInt()); // 123
int? toInt() => isNotEmptyOrNull ? int.tryParse(this!) : null;