Returns the value of this number as an int or null if can not be parsed.
int? toIntOrNull() { if (this == null) return null; return int.tryParse(this!); }