toDoubleOrNull method
Converts this nullable num to a double, or returns null if null.
Implementation
double? toDoubleOrNull() => this?.toDouble();
Converts this nullable num to a double, or returns null if null.
double? toDoubleOrNull() => this?.toDouble();