getDouble method

double getDouble(
  1. String key, [
  2. double? defaultValue
])

Returns double value by key

If map not contains key or the value has a different type and defaultValue is null then throw FormatException

Implementation

double getDouble(String key, [double? defaultValue]) {
  return _value(key, defaultValue);
}