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