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