Parses this to an int or returns null. Radix can be between 2 and 36.
this
int? toIntOrNull({int? radix}) => int.tryParse(this, radix: radix);