tryDouble abstract method

double? tryDouble()

The next value, if it is a number.

If the next value is a valid JSON number, it is returned as a double (as if parsed by double.parse). Returns null if the next value is not a number.

Implementation

double? tryDouble();