getDouble method

double getDouble(
  1. String path, [
  2. double defaultValue = 0.0
])

Implementation

double getDouble(String path, [double defaultValue = 0.0]) {
  return getDoubleOrNull(path, defaultValue) ?? defaultValue;
}