getSharedPrefsBool static method

Future<bool> getSharedPrefsBool(
  1. String key
)

Implementation

static Future<bool> getSharedPrefsBool(String key) async {
  return isWeb || isWindows
      ? await _all(key)
      : SharedPreferencesUtil.instance.getBool(key);
}