getBool static method
🔍 Get a bool value (defaults to false if key doesn't exist).
Implementation
static bool getBool(String key, {bool defaultValue = false}) {
assert(_prefs != null, 'Call EaseXStorage.init() first!');
return _prefs!.getBool(key) ?? defaultValue;
}