getDoubleCache static method

double? getDoubleCache({
  1. required String name,
})

Implementation

static double? getDoubleCache({required String name}) {
  return _prefs.getDouble(name);
}