storeDouble static method

Future<String?> storeDouble(
  1. String key,
  2. double value, {
  3. String MMKVId = "default",
})

Implementation

static Future<String?> storeDouble(String key, double value, {String MMKVId = "default"}) {
  return SharedStore.storeValue(key, value.toString(), valueType.doubleType, MMKVId);
}