saveDouble static method

dynamic saveDouble(
  1. String key,
  2. double value
)

Implementation

static saveDouble(String key, double value) async {
  SharedPreferences sp = await SharedPreferences.getInstance();
  return sp.setDouble(key, value);
}