getDouble method

double getDouble(
  1. String key
)

Gets the value for a given key as a double.

Returns 0.0 if the key does not exist.

Implementation

double getDouble(String key) {
  throw UnimplementedError('getDouble() is not implemented');
}