getDouble method

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

Get the double value associated with the specified key.

Implementation

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