getDouble method

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

Get the double value associated with the specified key.

Implementation

double? getDouble(String key, {double? defaultValue}) {
  assert(_key != null);
  return _decorator.getDouble(key, defaultValue: defaultValue);
}