Parse to int
int? toInt() { if (this == null) { throw FormatException(); } return int.parse(this!); }