setStorageBool function

Future<bool> setStorageBool(
  1. String key,
  2. bool value
)

Implementation

Future<bool> setStorageBool(String key, bool value) {
  return setStorageString(key, value ? "true" : "false");
}