Tries to parse the string as an integer and returns the result.
Returns null if the string cannot be parsed as an integer.
null
int? toInt({int? radix}) { return int.tryParse(this, radix: radix); }