getDouble abstract method

double getDouble(
  1. String key, {
  2. double defaultValue = 0.0,
})

Returns the value of the key as a double.

If parsing fails or key doesn't exist, returns the defaultValue.

Implementation

double getDouble(String key, {double defaultValue = 0.0});