getStorageBool static method

bool getStorageBool(
  1. String key
)

Implementation

static bool getStorageBool(String key) {
  if(getStorage == null) setStorage();
  return  getStorage!.read(key)  ?? false;
}