tryDouble method

double? tryDouble(
  1. K key
)

Returns the double value for key, or null if absent or not a double.

Implementation

double? tryDouble(K key) => tryGet<double>(key);