storeBool static method

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

Implementation

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