getStorageBool function

Future<bool> getStorageBool(
  1. String key
)

Implementation

Future<bool> getStorageBool(String key) async {
  return await getStorageString(key) == "true";
}