toDoubleOrNull method

double? toDoubleOrNull()

Implementation

double? toDoubleOrNull() => this == null ? null : double.tryParse(this!);